You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`NVIDIA container runtime detected. Configuring updated container with GPU support...`
870
+
)
871
+
updatedDeviceRequests=[
872
+
{
873
+
Driver: 'nvidia',
874
+
Count: -1,
875
+
Capabilities: [['gpu']],
876
+
},
877
+
]
878
+
}elseif(gpuResult.type==='amd'){
879
+
this._broadcast(
880
+
serviceName,
881
+
'update-gpu-config',
882
+
`AMD GPU detected. ROCm GPU acceleration is not yet supported — using CPU-only configuration.`
883
+
)
884
+
}elseif(gpuResult.toolkitMissing){
885
+
this._broadcast(
886
+
serviceName,
887
+
'update-gpu-config',
888
+
`NVIDIA GPU detected but NVIDIA Container Toolkit is not installed. Using CPU-only configuration. Install the toolkit and reinstall AI Assistant for GPU acceleration: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html`
889
+
)
890
+
}else{
891
+
this._broadcast(serviceName,'update-gpu-config',`No GPU detected. Using CPU-only configuration.`)
0 commit comments