- Removed the `--disable-hiprt` flag from the runner command, simplifying the rendering options for users. - Updated the `jiggablend-runner` script and README to reflect the removal of the HIPRT control flag, enhancing clarity in usage instructions. - Enhanced the installation script to provide clearer examples for running the jiggablend manager and runner, improving user experience during setup. - Implemented a more robust GPU backend detection mechanism, allowing for better compatibility with various hardware configurations.
14 lines
245 B
Go
14 lines
245 B
Go
package scripts
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed scripts/extract_metadata.py
|
|
var ExtractMetadata string
|
|
|
|
//go:embed scripts/unhide_objects.py
|
|
var UnhideObjects string
|
|
|
|
//go:embed scripts/render_blender.py.template
|
|
var RenderBlenderTemplate string
|
|
|