Harden intel boostrap for nil pointers

This commit is contained in:
Daniel Hiltgen 2024-08-09 11:31:38 -07:00
parent e9aa5117c4
commit 5bca2e60a7

View file

@ -305,6 +305,8 @@ func GetGPUInfo() GpuInfoList {
// Intel
if envconfig.IntelGPU() {
oHandles = initOneAPIHandles()
if oHandles != nil && oHandles.oneapi != nil {
// On windows we bundle the oneapi library one level above the runner dir
depPath = ""
if runtime.GOOS == "windows" && envconfig.RunnersDir() != "" {
@ -340,6 +342,7 @@ func GetGPUInfo() GpuInfoList {
}
}
}
}
rocmGPUs = AMDGetGPUInfo()
bootstrapped = true