-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[DML] Add int4 QDQ #21592
[DML] Add int4 QDQ #21592
Conversation
@@ -437,6 +437,12 @@ | |||
static const int sc_sinceVer_ReduceMin = 20; | |||
} | |||
|
|||
namespace OnnxOperatorSet21 | |||
{ | |||
static const int sc_sinceVer_QuantizeLinear = 21; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet21::sc_sinceVer_QuantizeLinear' can be computed at compile-time. Consider using constexpr (con.5). Warning
namespace OnnxOperatorSet21 | ||
{ | ||
static const int sc_sinceVer_QuantizeLinear = 21; | ||
static const int sc_sinceVer_DequantizeLinear = 21; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet21::sc_sinceVer_DequantizeLinear' can be computed at compile-time. Consider using constexpr (con.5). Warning
/azp run Big Models |
Azure Pipelines successfully started running 1 pipeline(s). |
onnxruntime/core/providers/dml/OperatorAuthorHelper/MLOperatorAuthorHelper.h
Outdated
Show resolved
Hide resolved
onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/OperatorRegistration.cpp
Show resolved
Hide resolved
onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperatorElementWise.cpp
Outdated
Show resolved
Hide resolved
onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperatorElementWise.cpp
Outdated
Show resolved
Hide resolved
onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperatorElementWise.cpp
Outdated
Show resolved
Hide resolved
onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/DmlOperatorElementWise.cpp
Outdated
Show resolved
Hide resolved
/azp run Windows GPU Doc Gen CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Big Models |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Windows GPU DML CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Big Models |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Windows GPU DML CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
{ | ||
static const int sc_sinceVer_QuantizeLinear = 21; | ||
static const int sc_sinceVer_DequantizeLinear = 21; | ||
static const int sc_sinceVer_Squeeze = 21; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet21::sc_sinceVer_Squeeze' can be computed at compile-time. Consider using constexpr (con.5). Warning
static const int sc_sinceVer_QuantizeLinear = 21; | ||
static const int sc_sinceVer_DequantizeLinear = 21; | ||
static const int sc_sinceVer_Squeeze = 21; | ||
static const int sc_sinceVer_Unsqueeze = 21; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet21::sc_sinceVer_Unsqueeze' can be computed at compile-time. Consider using constexpr (con.5). Warning
static const int sc_sinceVer_DequantizeLinear = 21; | ||
static const int sc_sinceVer_Squeeze = 21; | ||
static const int sc_sinceVer_Unsqueeze = 21; | ||
static const int sc_sinceVer_Reshape = 21; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet21::sc_sinceVer_Reshape' can be computed at compile-time. Consider using constexpr (con.5). Warning
static const int sc_sinceVer_Squeeze = 21; | ||
static const int sc_sinceVer_Unsqueeze = 21; | ||
static const int sc_sinceVer_Reshape = 21; | ||
static const int sc_sinceVer_Cast = 21; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet21::sc_sinceVer_Cast' can be computed at compile-time. Consider using constexpr (con.5). Warning
static const int sc_sinceVer_Unsqueeze = 21; | ||
static const int sc_sinceVer_Reshape = 21; | ||
static const int sc_sinceVer_Cast = 21; | ||
static const int sc_sinceVer_Shape = 21; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet21::sc_sinceVer_Shape' can be computed at compile-time. Consider using constexpr (con.5). Warning
…user/pavignol/add-int4-qdq
/azp run Big Models |
Azure Pipelines successfully started running 1 pipeline(s). |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run ONNX Runtime Web CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Windows CPU CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Windows GPU CUDA CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run orttraining-ortmodule-distributed |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run orttraining-linux-gpu-ci-pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Windows GPU TensorRT CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Windows GPU Doc Gen CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run Windows GPU DML CI Pipeline |
/azp run Windows ARM64 QNN CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run orttraining-linux-ci-pipeline |
/azp run Windows x64 QNN CI Pipeline |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
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.
👍
No description provided.