Skip to content

Commit

Permalink
Disable smoke_FloorMod on u types (openvinotoolkit#764)
Browse files Browse the repository at this point in the history
  • Loading branch information
vurusovs authored Nov 20, 2023
1 parent d471555 commit ffa0e21
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ INSTANTIATE_TEST_CASE_P(
CudaEltwiseLayerTest::getTestCaseName);

const std::vector<ov::test::ElementType> floor_mod_precisions = {
ov::test::ElementType::f16, ov::test::ElementType::f32, ov::test::ElementType::i32, ov::test::ElementType::u8};
ov::test::ElementType::f16, ov::test::ElementType::f32, ov::test::ElementType::i32/*, ov::test::ElementType::u8*/};

INSTANTIATE_TEST_CASE_P(
smoke_FloorMod,
Expand All @@ -222,7 +222,7 @@ INSTANTIATE_TEST_CASE_P(
::testing::Values(additional_config)),
::testing::Values(OperationMode::NORMAL)),
CudaEltwiseLayerTest::getTestCaseName);

/*
INSTANTIATE_TEST_CASE_P(
smoke_FloorMod_U32,
CudaEltwiseLayerTest,
Expand All @@ -238,7 +238,7 @@ INSTANTIATE_TEST_CASE_P(
::testing::Values(additional_config)),
::testing::Values(OperationMode::NORMAL)),
CudaEltwiseLayerTest::getTestCaseName);

*/
INSTANTIATE_TEST_CASE_P(
smoke_FloorMod_I64,
CudaEltwiseLayerTest,
Expand Down

0 comments on commit ffa0e21

Please sign in to comment.