-
Notifications
You must be signed in to change notification settings - Fork 224
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
[Jenkins][Tests] Add stage with -DMIOPEN_USE_COMPOSABLEKERNEL=Off after #2517 #2630. #2631
Changes from 3 commits
7c6f2a4
623d146
b0d49a2
5c71307
82ae483
8a976bb
fe1b539
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -406,7 +406,7 @@ def CheckPerfDbValid(Map conf=[:]){ | |||
/// * The default compiler is usually not specified. | ||||
/// BuildType := { Release* | Debug | Install } [ BuildTypeModifier ] | ||||
/// * BuildTypeModifier := { NOCOMGR | Embedded | Static | Normal-Find | Fast-Find | ||||
/// CK | NOMLIR | Tensile | Tensile-Latest | Package | ... } | ||||
/// NOCK | NOMLIR | Tensile | Tensile-Latest | Package | ... } | ||||
/// TestSet := { All | Smoke* | Performance Dataset } [ Codecov ] | ||||
/// * "All" corresponds to "cmake -DMIOPEN_TEST_ALL=On". | ||||
/// * "Smoke" (-DMIOPEN_TEST_ALL=Off) is the default and usually not specified. | ||||
|
@@ -533,6 +533,7 @@ pipeline { | |||
Smoke_targets = " check MIOpenDriver" | ||||
NOCOMGR_flags = " -DMIOPEN_USE_COMGR=Off" | ||||
NOMLIR_flags = " -DMIOPEN_USE_MLIR=Off" | ||||
NOCK_flags = " -DMIOPEN_USE_COMPOSABLEKERNEL=Off" | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [R] Used only once and complicates the source.
Suggested change
BTW the leading space should not be necessary. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||||
} | ||||
triggers{ | ||||
|
||||
|
@@ -729,6 +730,23 @@ pipeline { | |||
buildHipClangJobAndReboot( build_type: 'debug', setup_flags: NOMLIR_flags, build_cmd: NOMLIR_build_cmd, test_flags: ' --verbose ') | ||||
} | ||||
} | ||||
stage('Fp32 Hip Debug NOCK gfx908/gfx90a') { | ||||
when { | ||||
beforeAgent true | ||||
expression { params.TARGET_GFX908 || params.TARGET_GFX90A } | ||||
} | ||||
options { | ||||
retry(2) | ||||
} | ||||
agent{ label rocmnode("gfx908 || gfx90a") } | ||||
environment{ | ||||
// Can be removed altogether with when WORKAROUND_SWDEV_290754. | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Irrelevant comment.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. This whole section of environment is removed too. |
||||
NOCK_build_cmd = "CTEST_PARALLEL_LEVEL=4 MIOPEN_CONV_PRECISE_ROCBLAS_TIMING=0 MIOPEN_LOG_LEVEL=5 make -j\$(nproc) check" | ||||
} | ||||
steps{ | ||||
buildHipClangJobAndReboot( build_type: 'debug', setup_flags: NOCK_flags, build_cmd: NOCK_build_cmd, test_flags: ' --verbose ') | ||||
} | ||||
} | ||||
stage('Fp32 Hip Debug Embedded Vega20') { | ||||
when { | ||||
beforeAgent true | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done