-
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 EP] Register ReduceMin-20 #20477
Conversation
@@ -434,6 +434,7 @@ | |||
static const int sc_sinceVer_IsNaN = 20; | |||
static const int sc_sinceVer_IsInf = 20; | |||
static const int sc_sinceVer_ReduceMax = 20; | |||
static const int sc_sinceVer_ReduceMin = 20; |
Check warning
Code scanning / PREfast
The const variable 'OperatorHelper::OnnxOperatorSet20::sc_sinceVer_ReduceMin' can be computed at compile-time. Consider using constexpr (con.5). Warning
onnxruntime/core/providers/dml/DmlExecutionProvider/src/Operators/OperatorRegistration.cpp
Show resolved
Hide resolved
onnxruntime/test/testdata/onnx_backend_test_series_filters.jsonc
Outdated
Show resolved
Hide resolved
onnxruntime/test/testdata/onnx_backend_test_series_filters.jsonc
Outdated
Show resolved
Hide resolved
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.
Description
This PR registers the ReduceMin-20 operator to the DML EP.
Motivation and Context