Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TESTS][FP16][WORKAROUND] Fix test_conv_igemm_dynamic_xdlops* and test_regression_half_vega. W/A for #995 and #996 #991

Merged
merged 10 commits into from
Jun 22, 2021
14 changes: 9 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,11 @@ pipeline {
defaultValue: true,
description: "")
booleanParam(
name: "SMOKE_TESTS",
name: "SMOKE_FP32_AUX1",
defaultValue: true,
description: "")
booleanParam(
name: "SMOKE_FP16_BF16_INT8",
defaultValue: true,
description: "")
booleanParam(
Expand Down Expand Up @@ -280,7 +284,7 @@ pipeline {
}
}
stage("Smoke Fp32"){
when { expression { params.SMOKE_TESTS } }
when { expression { params.SMOKE_FP32_AUX1 } }
parallel{
stage('Fp32 OpenCL Debug') {
agent{ label rocmnode("vega") }
Expand Down Expand Up @@ -341,7 +345,7 @@ pipeline {
}
}
stage("Smoke Aux 1"){
when { expression { params.SMOKE_TESTS } }
when { expression { params.SMOKE_FP32_AUX1 } }
parallel{
stage('Fp32 HipNoGPU Debug') {
agent{ label rocmnode("nogpu") }
Expand Down Expand Up @@ -511,7 +515,7 @@ pipeline {
}
}
stage("Smoke Fp16/Bf16/Int8"){
when { expression { params.SMOKE_TESTS } }
when { expression { params.SMOKE_FP16_BF16_INT8 } }
parallel{
stage('Fp16 Hip Vega20 /opt/rocm') {
agent{ label rocmnode("vega20") }
Expand Down Expand Up @@ -557,7 +561,7 @@ pipeline {
agent{ label rocmnode("gfx908") }
steps{
script{
runDockerJob(flags: '-DMIOPEN_TEST_BFLOAT16=On -DMIOPEN_TEST_GFX908=On -DBUILD_DEV=On -DCMAKE_BUILD_TYPE=debug', prefixpath: '/opt/rocm', gpu_arch: "gfx908")
runDockerJob(flags: '-DMIOPEN_TEST_HALF=On -DMIOPEN_TEST_GFX908=On -DBUILD_DEV=On -DCMAKE_BUILD_TYPE=debug', prefixpath: '/opt/rocm', gpu_arch: "gfx908")
}
}
}
Expand Down
Loading