1a69fcfd04
- Updated the installation script to clarify that production wrappers do not include fixed test secrets, improving user guidance for local testing. - Modified the jiggablend-manager and jiggablend-runner scripts to remove fixed test configurations, emphasizing the use of local test credentials via `make init-test`. - Enhanced error handling in the runner script to ensure that an API key is provided, improving security and user feedback. - Added new flags and options for the runner, including sandboxing capabilities and GPU ray tracing control, enhancing flexibility for users. - Improved README documentation to reflect changes in usage and configuration, ensuring users have clear instructions for setup and execution.
20 lines
370 B
Go
20 lines
370 B
Go
package blender
|
|
|
|
import "testing"
|
|
|
|
func TestParseRocmAgentArch(t *testing.T) {
|
|
input := `ROCk module is loaded
|
|
Agent 1
|
|
Name: gfx1151
|
|
Marketing Name: AMD Radeon Graphics
|
|
`
|
|
arch, ok := parseRocmAgentArch(input)
|
|
if !ok {
|
|
t.Fatal("expected arch to be parsed")
|
|
}
|
|
if arch != "gfx1151" {
|
|
t.Fatalf("arch = %q, want gfx1151", arch)
|
|
}
|
|
}
|
|
|