pinokiod 5.1.29 → 5.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kernel/bin/cuda.js +4 -1
- package/package.json +1 -1
package/kernel/bin/cuda.js
CHANGED
|
@@ -60,7 +60,7 @@ class Cuda {
|
|
|
60
60
|
await this.kernel.bin.exec({
|
|
61
61
|
message: [
|
|
62
62
|
"conda clean -y --all",
|
|
63
|
-
"conda install -y nvidia/label/cuda-12.8.1::cuda"
|
|
63
|
+
"conda install -y nvidia/label/cuda-12.8.1::cuda conda-forge::cuda-cccl"
|
|
64
64
|
]
|
|
65
65
|
}, ondata)
|
|
66
66
|
await this.stashActivationScripts()
|
|
@@ -98,6 +98,9 @@ class Cuda {
|
|
|
98
98
|
console.log("cuda version", coerced)
|
|
99
99
|
if (semver.satisfies(coerced, ">=12.8.1")) {
|
|
100
100
|
console.log("cuda satisfied")
|
|
101
|
+
if (!this.kernel.bin.installed.conda.has("cuda-cccl")) {
|
|
102
|
+
return false
|
|
103
|
+
}
|
|
101
104
|
let deactivate_list = [
|
|
102
105
|
"vs2019_compiler_vars.bat",
|
|
103
106
|
"vs2022_compiler_vars.bat",
|