Skip to content

Commit 0ebc336

Browse files
authored
Add CPU, Conv, UnittTestConvSolver and 2 more (ROCm#1215)
1 parent eafaff9 commit 0ebc336

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

build_tools/github_actions/fetch_test_configurations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

build_tools/github_actions/test_executable_scripts/test_miopen.py

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,29 @@
2727
positive_filter.append("*/GPU_BNOCLInfer*_*")
2828
positive_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

3354
gtest_final_filter_cmd = (
3455
"--gtest_filter=" + ":".join(positive_filter) + "-" + ":".join(negative_filter)

0 commit comments

Comments
 (0)