Skip to content

Commit

Permalink
put python in path
Browse files Browse the repository at this point in the history
  • Loading branch information
smjleo committed Oct 15, 2024
1 parent cb6156d commit 2042008
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .buildkite/gpu_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ steps:
export LD_LIBRARY_PATH="`pwd`/bazel-bin/test/llama.runfiles/pypi_nvidia_cuda_runtime_cu12/site-packages/nvidia/cuda_runtime/lib:\$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="`pwd`/bazel-bin/test/llama.runfiles/pypi_nvidia_cuda_nvrtc_cu12/site-packages/nvidia/cuda_nvrtc/lib:\$LD_LIBRARY_PATH"
export PATH="`pwd`/bazel-bin/test/llama.runfiles/pypi_nvidia_cuda_nvcc_cu12/site-packages/nvidia/cuda_nvcc/bin:\$PATH"
export PATH="`pwd`/bazel-bin/test/llama.runfiles/python_x86_64-unknown-linux-gnu/bin:\$PATH"
export TF_CPP_MIN_LOG_LEVEL=0
BAZEL_BUILD_FLAGS=()
Expand Down Expand Up @@ -91,3 +92,4 @@ steps:
- "finds.txt"
- "bazel-out/*/testlogs/test/llama/test.log"
- "bazel-out/*/testlogs/test/llama/bench_vs_xla.log"
- "results_*.csv"
2 changes: 1 addition & 1 deletion src/enzyme_ad/jax/deps/tensat/src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ fn extract_by_ilp(
arg_vec.push(time_lim);
arg_vec.push("--num_thread");
arg_vec.push(num_thread);
let child = Command::new("python")
let child = Command::new("python3")
.args(&arg_vec)
.spawn()
.expect("failed to execute child");
Expand Down

0 comments on commit 2042008

Please sign in to comment.