From 74f6136c45df4198eee109cedca908882dd956aa Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Tue, 22 Oct 2024 23:20:05 -0700 Subject: [PATCH] Automated rollback of changelist 688755446 PiperOrigin-RevId: 688831563 --- .buildkite/pipeline.yaml | 10 ---------- .buildkite/release.yaml | 9 --------- test/gpu/cuda_test.go | 2 +- 3 files changed, 1 insertion(+), 20 deletions(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index f0b6b34b64..030a99d924 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -190,16 +190,6 @@ steps: - make cos-gpu-all-tests agents: queue: cos-canary-gpu - - <<: *common - <<: *source_test_continuous - label: ":fish: CUDA tests" - # This is its own test rather than being part of the GPU tests, - # because it takes around 15 minutes to run. - commands: - - make sudo TARGETS=//tools/gpu:main ARGS="install --latest" || cat /var/log/nvidia-installer.log - - make sudo TARGETS=//test/gpu:cuda_test - agents: - queue: gpu - <<: *common <<: *source_test_continuous label: ":screwdriver: All GPU Drivers Test" diff --git a/.buildkite/release.yaml b/.buildkite/release.yaml index cb96a60df9..e913feb685 100644 --- a/.buildkite/release.yaml +++ b/.buildkite/release.yaml @@ -73,12 +73,3 @@ steps: - tools/gpu/all_drivers_test.sh agents: queue: gpu - - <<: *common - label: ":fish: CUDA tests in compatibility-verifying mode" - # This is its own test rather than being part of the GPU tests, - # because it takes around an hour to run. - commands: - - make sudo TARGETS=//tools/gpu:main ARGS="install --latest" || cat /var/log/nvidia-installer.log - - make sudo TARGETS=//test/gpu:cuda_test ARGS="--cuda_verify_compatibility=true" - agents: - queue: gpu diff --git a/test/gpu/cuda_test.go b/test/gpu/cuda_test.go index 03906e68b1..dec522b0fa 100644 --- a/test/gpu/cuda_test.go +++ b/test/gpu/cuda_test.go @@ -745,7 +745,7 @@ func TestCUDA(t *testing.T) { durationPct := 100.0 * float64(startedAgo) / float64(testDeadline.Sub(testStart)) testLog(t, "[Timing] %d/%d tests (%.1f%%) finished executing. Test started %v ago, deadline in %v (%.1f%%).", testsDone, numTests, donePct, startedAgo.Truncate(time.Second), deadlineIn.Truncate(time.Second), durationPct) if len(failedTests) > 0 { - testLog(t, "[Failed] %d test(s) failed: %v", len(failedTests), strings.Join(failedTests, ", ")) + testLog(t, "[Failed] %d test failed: %v", len(failedTests), strings.Join(failedTests, ", ")) } testLog(t, "[Pool] %v", cp.String()) }