From 184da24e16167251255a90e4307d04c69a6929f5 Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Fri, 10 Jan 2025 15:44:18 -0800 Subject: [PATCH] CUDA test compatibility: Remove `p2pBandwidthLatencyTest` special case. While this test does use the P2P capability, it also has fallback code to do regular memcopies when P2P is not available. So it does not require the P2P capability. PiperOrigin-RevId: 714255304 --- test/gpu/cuda_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/test/gpu/cuda_test.go b/test/gpu/cuda_test.go index 1944459594..6963d66975 100644 --- a/test/gpu/cuda_test.go +++ b/test/gpu/cuda_test.go @@ -111,7 +111,6 @@ var testCompatibility = map[string]Compatibility{ "5_Domain_Specific/fluidsGLES": &OnlyOnWindows{}, "5_Domain_Specific/nbody_opengles": &OnlyOnWindows{}, "5_Domain_Specific/nbody_screen": &OnlyOnWindows{}, - "5_Domain_Specific/p2pBandwidthLatencyTest": &RequiresP2P{}, "5_Domain_Specific/postProcessGL": RequiresFeatures(FeatureGL), "5_Domain_Specific/simpleD3D10": &OnlyOnWindows{}, "5_Domain_Specific/simpleD3D10RenderTarget": &OnlyOnWindows{},