Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/silence-ptxcompiler-probe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@platforma-open/milaboratories.runenv-python-3.12.10-rapids": patch
---

Silence the cudf ptxcompiler numba-codegen probe. Setting `PTXCOMPILER_CHECK_NUMBA_CODEGEN_PATCH_NEEDED=0` skips the import-time subprocess that fails to load `libcudart.so` and prints a misleading `OSError` traceback plus `Not patching Numba` on every run. cuML/CuPy are unaffected — the probe already defaulted to not patching.
3 changes: 2 additions & 1 deletion python-3.12.10-rapids/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"NVIDIA_VISIBLE_DEVICES=all",
"NVIDIA_DRIVER_CAPABILITIES=compute,utility",
"LD_LIBRARY_PATH=/usr/local/nvidia/lib64:/usr/local/nvidia/lib",
"PATH=/usr/local/nvidia/bin:${PATH}"
"PATH=/usr/local/nvidia/bin:${PATH}",
"PTXCOMPILER_CHECK_NUMBA_CODEGEN_PATCH_NEEDED=0"
],
"roots": {
"linux-x64": "./pydist/linux-x64",
Expand Down
Loading