We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b73a7 commit 603a8a2Copy full SHA for 603a8a2
src/Accelerators/NNPA/Compiler/NNPACompilerUtils.cpp
@@ -52,6 +52,11 @@ void configurePassesNNPA() {
52
// TODO: remove this if zDNN adds support for saturation.
53
if (nnpaEnableSaturation)
54
nnpaEnableCompilerStickUnstick = true;
55
+ // Currently nnpaEnableCompilerStickUnstick not supported on zOS.
56
+ // TODO enable on zOS
57
+ if (mtriple == "s390x-ibm-zos") {
58
+ nnpaEnableCompilerStickUnstick = false;
59
+ }
60
}
61
62
void addONNXToZHighPasses(mlir::PassManager &pm) {
0 commit comments