File tree Expand file tree Collapse file tree 2 files changed +24
-3
lines changed
build_tools/github_actions Expand file tree Collapse file tree 2 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ def _get_script_path(script_name: str) -> str:
9999 "miopen" : {
100100 "job_name" : "miopen" ,
101101 "fetch_artifact_args" : "--blas --miopen --tests" ,
102- "timeout_minutes" : 5 ,
102+ "timeout_minutes" : 120 ,
103103 "test_script" : f"python { _get_script_path ('test_miopen.py' )} " ,
104104 "platform" : ["linux" ],
105105 },
Original file line number Diff line number Diff line change 2727positive_filter .append ("*/GPU_BNOCLInfer*_*" )
2828positive_filter .append ("*/GPU_bn_infer*_*" )
2929
30- negative_filter .append ("*/GPU_BN*Large*_*" )
31- negative_filter .append ("*/GPU_BN*SerialRun*_*" )
30+ # CPU tests
31+ positive_filter .append ("CPU_*" ) # tests without a suite
32+ positive_filter .append ("*/CPU_*" ) # tests with a suite
33+
34+ # Different
35+ positive_filter .append ("*/GPU_Cat_*" )
36+ positive_filter .append ("*/GPU_ConvBiasActiv*" )
37+
38+ # Convolutions
39+ positive_filter .append ("*/GPU_Conv*" )
40+ positive_filter .append ("*/GPU_conv*" )
41+
42+ # Solvers
43+ positive_filter .append ("*/GPU_UnitTestConv*" )
44+
45+ negative_filter .append ("*DBSync*" )
46+ negative_filter .append ("*DeepBench*" )
47+ negative_filter .append ("*MIOpenTestConv*" )
48+
49+ # Temporary fails
50+ negative_filter .append ("*ConvBiasResAddActivation*" )
51+ negative_filter .append ("*ConvFwdBiasResAddActiv*" )
52+ negative_filter .append ("*GPU_FusionSetArg_FP16*" )
3253
3354gtest_final_filter_cmd = (
3455 "--gtest_filter=" + ":" .join (positive_filter ) + "-" + ":" .join (negative_filter )
You can’t perform that action at this time.
0 commit comments