mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 16:29:18 +00:00
26 lines
392 B
Go
26 lines
392 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
func capabilityToCLI(cap string) string {
|
||
|
switch cap {
|
||
|
case "compute":
|
||
|
return "--compute"
|
||
|
case "compat32":
|
||
|
return "--compat32"
|
||
|
case "graphics":
|
||
|
return "--graphics"
|
||
|
case "utility":
|
||
|
return "--utility"
|
||
|
case "video":
|
||
|
return "--video"
|
||
|
case "display":
|
||
|
return "--display"
|
||
|
default:
|
||
|
log.Panicln("unknown driver capability:", cap)
|
||
|
}
|
||
|
return ""
|
||
|
}
|