mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 05:24:11 +03:00
* catch failed image embedding in triggers * move scrollbar to edge on platform aware dialog drawers * add i18n key * show negotiated mse codecs in console on error * try changing rocm * Improve toast consistency * add attribute area and score to detail stream tooltip --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
47 lines
830 B
HCL
47 lines
830 B
HCL
variable "AMDGPU" {
|
|
default = "gfx900"
|
|
}
|
|
variable "ROCM" {
|
|
default = "7.1.0"
|
|
}
|
|
variable "HSA_OVERRIDE_GFX_VERSION" {
|
|
default = ""
|
|
}
|
|
variable "HSA_OVERRIDE" {
|
|
default = "1"
|
|
}
|
|
|
|
target wget {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/amd64"]
|
|
target = "wget"
|
|
}
|
|
|
|
target deps {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/amd64"]
|
|
target = "deps"
|
|
}
|
|
|
|
target rootfs {
|
|
dockerfile = "docker/main/Dockerfile"
|
|
platforms = ["linux/amd64"]
|
|
target = "rootfs"
|
|
}
|
|
|
|
target rocm {
|
|
dockerfile = "docker/rocm/Dockerfile"
|
|
contexts = {
|
|
deps = "target:deps",
|
|
wget = "target:wget",
|
|
rootfs = "target:rootfs"
|
|
}
|
|
platforms = ["linux/amd64"]
|
|
args = {
|
|
AMDGPU = AMDGPU,
|
|
ROCM = ROCM,
|
|
HSA_OVERRIDE_GFX_VERSION = HSA_OVERRIDE_GFX_VERSION,
|
|
HSA_OVERRIDE = HSA_OVERRIDE
|
|
}
|
|
}
|