@@ -24,46 +24,22 @@ import (
24
24
"gvisor.dev/gvisor/test/gpu/cuda"
25
25
)
26
26
27
- var testSuiteCompatibility = map [string ]cuda.Compatibility {
28
- "0_Introduction" : & cuda.NoCrossCompile {},
29
- "1_Utilities" : & cuda.NoCrossCompile {},
30
- "2_Concepts_and_Techniques" : & cuda.NoCrossCompile {},
31
- "3_CUDA_Features" : & cuda.NoCrossCompile {},
32
- "4_CUDA_Libraries" : & cuda.NoCrossCompile {},
33
- "5_Domain_Specific" : & cuda.NoCrossCompile {},
34
- "6_Performance" : & cuda.NoCrossCompile {},
35
- }
27
+ var testSuiteCompatibility = map [string ]cuda.Compatibility {}
36
28
37
29
// TODO(b/388095023): Enable these tests once they are tested.
38
30
var skippedTestSuites = map [string ]string {
39
- "1_Utilities" : "TODO: not yet tested" ,
40
- "2_Concepts_and_Techniques" : "TODO: not yet tested" ,
41
- "3_CUDA_Features" : "TODO: not yet tested" ,
42
- "4_CUDA_Libraries" : "TODO: not yet tested" ,
43
- "5_Domain_Specific" : "TODO: not yet tested" ,
44
- "6_Performance" : "TODO: not yet tested" ,
31
+ "3_CUDA_Features" : "TODO: not yet tested" ,
32
+ "4_CUDA_Libraries" : "TODO: not yet tested" ,
33
+ "5_Domain_Specific" : "TODO: not yet tested" ,
34
+ "6_Performance" : "TODO: not yet tested" ,
35
+ "7_libNVVM" : "TODO: not yet tested" ,
45
36
}
46
37
47
- var testCompatibility = map [string ]cuda.Compatibility {
48
- "0_Introduction/simpleAttributes" : cuda .RequiresFeatures (cuda .FeaturePersistentL2Caching ),
49
- "0_Introduction/simpleCUDA2GL" : cuda .RequiresFeatures (cuda .FeatureGL ),
50
- "0_Introduction/simpleP2P" : & cuda.RequiresP2P {},
51
- }
38
+ var testCompatibility = map [string ]cuda.Compatibility {}
52
39
53
40
var flakyTests = map [string ]struct {}{}
54
41
55
- var exclusiveTests = map [string ]struct {}{
56
- // Can fail due to
57
- // "launch failed because launch would exceed cudaLimitDevRuntimePendingLaunchCount"
58
- // when running in parallel with other tests.
59
- "3_CUDA_Features/cdpAdvancedQuicksort" : {},
60
-
61
- // Performance-intensive tests that tend to make other concurrent tests
62
- // flake due to their high resource usage.
63
- "6_Performance/alignedTypes" : {},
64
- "6_Performance/transpose" : {},
65
- "6_Performance/UnifiedMemoryPerf" : {},
66
- }
42
+ var exclusiveTests = map [string ]struct {}{}
67
43
68
44
// alwaysSkippedTests don't run at all, ever, and are not verified when
69
45
// --cuda_verify_compatibility is set.
0 commit comments