You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This likely occurs with the other hanging tests in the above GPU CI run: supernova::snark::test::test_compression_with_circuit_size_difference, supernova::snark::test::test_nivc_trivial_with_compression, and tests::test_ivc_nontrivial_with_compression.
This issue does not occur on non-GPU servers or in lurk-rs.
Potential Diagnosis
Grumpkin-msm compiles a lot of code when GPU acceleration is enabled, as seen by its long compile times, so including debug info could be overloading the GPU resources. However, this wouldn't explain the lack of timeouts in lurk-rs.
Problem
The
dev-ci
Cargo profile implicitly enables debug info to troubleshoot CI failures on pull requests. However, when running GPU CI in e.g. https://github.com/lurk-lab/arecibo/actions/runs/7560396589/job/20592226334, we observe the following:tests::test_ivc_nontrivial_with_spark_compression
--release
or addingdebug = false
to thedev-ci
profile fixes the issuesupernova::snark::test::test_compression_with_circuit_size_difference
,supernova::snark::test::test_nivc_trivial_with_compression
, andtests::test_ivc_nontrivial_with_compression
.lurk-rs
.Potential Diagnosis
Grumpkin-msm compiles a lot of code when GPU acceleration is enabled, as seen by its long compile times, so including debug info could be overloading the GPU resources. However, this wouldn't explain the lack of timeouts in
lurk-rs
.Solutions
release
mode in ci: Disable debug info for GPU tests #271grumpkin-msm
and try to repro test timeouts there. cc @winston-h-zhangThe text was updated successfully, but these errors were encountered: