Skip to content

Commit

Permalink
MatMulCompressedWeights tests: added FQ postops
Browse files Browse the repository at this point in the history
  • Loading branch information
v-Golubev committed Nov 9, 2023
1 parent 37540ec commit 160f38f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,10 @@ const std::vector<ShapeParams> input_shapes_amx = {
{{{}, {{11, 339, 577}}}, {577, 335}},
{{{}, {{1, 1, 256}}}, {256, 128}, 64ul},
};
const std::vector<fusingSpecificParams> fusingParamsSet {
const std::vector<fusingSpecificParams> fusing_params {
emptyFusingSpec,
fusingBias,
fusingFakeQuantizePerTensorRelu
};

INSTANTIATE_TEST_SUITE_P(smoke_MatMulCompressedWeights_basic,
Expand All @@ -345,7 +346,7 @@ INSTANTIATE_TEST_SUITE_P(smoke_MatMulCompressedWeights_basic,
::testing::Values(true),
::testing::Values(true),
::testing::ValuesIn(filterAdditionalConfigBasic()),
::testing::ValuesIn(fusingParamsSet),
::testing::ValuesIn(fusing_params),
::testing::Values(true)),
MatmulWeightsDecompression::getTestCaseName);

Expand All @@ -358,7 +359,7 @@ INSTANTIATE_TEST_SUITE_P(smoke_MatMulCompressedWeights_amx,
::testing::Values(true),
::testing::Values(true),
::testing::ValuesIn(filterAdditionalConfigAMX()),
::testing::ValuesIn(fusingParamsSet),
::testing::ValuesIn(fusing_params),
::testing::Values(true)),
MatmulWeightsDecompression::getTestCaseName);

Expand Down

0 comments on commit 160f38f

Please sign in to comment.