mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-29 23:06:41 +00:00
Fix of support api version bug for [de]quantize (#6492)
This commit is contained in:
parent
ce46f37ff2
commit
d4e1f5ab78
1 changed files with 2 additions and 2 deletions
|
|
@ -1029,7 +1029,7 @@ class QuantizeLinearOpSupportChecker : public BaseOpSupportChecker {
|
|||
const OpSupportCheckParams& params) const override;
|
||||
|
||||
int32_t GetMinSupportedSdkVer(const Node& /* node */, const OpSupportCheckParams& /* params */) const override {
|
||||
return 27;
|
||||
return 29;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -1070,7 +1070,7 @@ class DequantizeLinearOpSupportChecker : public BaseOpSupportChecker {
|
|||
const OpSupportCheckParams& params) const override;
|
||||
|
||||
int32_t GetMinSupportedSdkVer(const Node& /* node */, const OpSupportCheckParams& /* params */) const override {
|
||||
return 29;
|
||||
return 27;
|
||||
}
|
||||
bool HasSupportedInputsImpl(const Node& node) const override;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue