Organize templates into per-stack folders
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
data "coder_parameter" "gpu" {
|
||||
name = "gpu"
|
||||
display_name = "GPU Assignment"
|
||||
description = "Which GPU(s) to attach. GPU 1 is shared with Ollama and Immich, so GPU 0 is the default to avoid contention."
|
||||
default = "0"
|
||||
mutable = true
|
||||
icon = "/icon/memory.svg"
|
||||
|
||||
option {
|
||||
name = "GPU 0 - RTX 3060"
|
||||
value = "0"
|
||||
}
|
||||
option {
|
||||
name = "GPU 1 - GTX 1660 (shared with Ollama and Immich)"
|
||||
value = "1"
|
||||
}
|
||||
option {
|
||||
name = "Both GPUs"
|
||||
value = "all"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user