Skip to content

Commit

Permalink
Use size_t as data type for number of groups in GroupNormalizationFus…
Browse files Browse the repository at this point in the history
…ion tests
  • Loading branch information
jhajducz committed Feb 13, 2025
1 parent cce734a commit 30278fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using GroupNormalizationFusionSubgraphTestValues =
Shape, // shape of optional instance norm beta tensor (or empty shape if not used)
Shape, // shape of group norm gamma tensor
Shape, // shape of group norm beta tensor
unsigned long long, // number of groups
size_t, // number of groups
float, // epsilon
bool>; // whether it's a positive test that should run reference model or a negative test

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ using GroupNormalizationFusionTestBaseValues =
Shape, // shape of optional instance norm beta tensor (or empty shape if not used)
Shape, // shape of group norm gamma tensor
Shape, // shape of group norm beta tensor
unsigned long long, // number of groups
size_t, // number of groups
float>; // epsilon

using GroupNormalizationFusionTransformationsTestValues =
Expand All @@ -31,7 +31,7 @@ using GroupNormalizationFusionTransformationsTestValues =
Shape, // shape of optional instance norm beta tensor (or empty shape if not used)
Shape, // shape of group norm gamma tensor
Shape, // shape of group norm beta tensor
unsigned long long, // number of groups
size_t, // number of groups
float, // epsilon
bool, // whether it's a positive test that should run reference model or a negative test
std::string, // taget device name
Expand Down

0 comments on commit 30278fe

Please sign in to comment.