Skip to content
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

Make argmin/armax support identical data types and add int64 support #21641

Merged
merged 8 commits into from
Sep 23, 2024
Prev Previous commit
Next Next commit
lintrunner
  • Loading branch information
cbourjau committed Sep 18, 2024
commit e0a01e9a343571213fa07fb7c830725439b49963
12 changes: 6 additions & 6 deletions onnxruntime/test/providers/cpu/reduction/reduction_ops_test.cc
Original file line number Diff line number Diff line change
@@ -3539,14 +3539,14 @@ TEST(ReductionOpTest, ArgMin_int8) {
test.AddAttribute("axis", (int64_t)0);
test.AddAttribute("keepdims", (int64_t)0);
test.AddInput<int8_t>("data", {3, 2, 2},
{1, 2,
3, 4,
{1, 2,
3, 4,

5, 6,
7, 8,
5, 6,
7, 8,

9, 10,
11, 12});
9, 10,
11, 12});
test.AddOutput<int64_t>("reduced", {2, 2},
{0, 0,
0, 0});
Loading