Skip to content
Open
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
10 changes: 6 additions & 4 deletions .github/workflows/test-gpu-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,17 @@ jobs:
# internal buck test behavior.
# The CI profile is configured in .config/nextest.toml
# Exclude filter is for packages that don't build in Github Actions yet.
# * monarch_messages: monarch/target/debug/deps/monarch_messages-...:
# /lib64/libm.so.6: version `GLIBC_2.29' not found
# (required by /meta-pytorch/monarch/libtorch/lib/libtorch_cpu.so)
# Exclude packages that link against libtorch - the nightly libtorch requires
# GLIBC_2.29+ which is not available in the CI container.
# Error: /lib64/libm.so.6: version `GLIBC_2.29' not found
# (required by /meta-pytorch/monarch/libtorch/lib/libtorch_cpu.so)
timeout 12m cargo nextest run --workspace --profile ci \
--exclude monarch_messages \
--exclude monarch_tensor_worker \
--exclude torch-sys-cuda \
--exclude monarch_rdma \
--exclude torch-sys
--exclude torch-sys \
--exclude rdmaxcel-sys
# Copy the test results to the expected location
# TODO: error in pytest-results-action, TypeError: results.testsuites.testsuite.testcase is not iterable
# Don't try to parse these results for now.
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "deps/hipify_torch"]
path = deps/hipify_torch
url = https://github.com/ROCm/hipify_torch
2 changes: 1 addition & 1 deletion build_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ doctest = false
[dependencies]
cc = "1.2.10"
glob = "0.3.2"
pyo3-build-config = "0.24.2"
pyo3-build-config = { version = "0.24.2", features = ["resolve-config"] }
which = "4.2.4"
Loading
Loading