@@ -24,46 +24,22 @@ import (
2424 "gvisor.dev/gvisor/test/gpu/cuda"
2525)
2626
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 {}
3628
3729// TODO(b/388095023): Enable these tests once they are tested.
3830var 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" ,
4536}
4637
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 {}
5239
5340var flakyTests = map [string ]struct {}{}
5441
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 {}{}
6743
6844// alwaysSkippedTests don't run at all, ever, and are not verified when
6945// --cuda_verify_compatibility is set.
0 commit comments