From 87fd11526f32b09baa1c72735d1ee4c4fb412dc0 Mon Sep 17 00:00:00 2001 From: rocking5566 Date: Fri, 28 Oct 2022 09:08:53 +0800 Subject: [PATCH] Only need one test case here (#483) --- test/normalization/test_groupnorm_fp16.cpp | 7 ------- test/normalization/test_groupnorm_fp32.cpp | 7 ------- 2 files changed, 14 deletions(-) diff --git a/test/normalization/test_groupnorm_fp16.cpp b/test/normalization/test_groupnorm_fp16.cpp index 550813323b..ecdf61cade 100644 --- a/test/normalization/test_groupnorm_fp16.cpp +++ b/test/normalization/test_groupnorm_fp16.cpp @@ -45,13 +45,6 @@ class TestGroupnorm : public ::testing::Test using KernelTypes = ::testing::Types< // XDataType, GammaDataType, BetaDataType, AccDataType, YDataType> - std::tuple, - std::tuple, - std::tuple, - std::tuple, - std::tuple, - std::tuple, - std::tuple, std::tuple>; TYPED_TEST_SUITE(TestGroupnorm, KernelTypes); diff --git a/test/normalization/test_groupnorm_fp32.cpp b/test/normalization/test_groupnorm_fp32.cpp index 8abec91fee..6c5e2f20b7 100644 --- a/test/normalization/test_groupnorm_fp32.cpp +++ b/test/normalization/test_groupnorm_fp32.cpp @@ -43,13 +43,6 @@ class TestGroupnorm : public ::testing::Test using KernelTypes = ::testing::Types< // XDataType, GammaDataType, BetaDataType, AccDataType, YDataType> - std::tuple, - std::tuple, - std::tuple, - std::tuple, - std::tuple, - std::tuple, - std::tuple, std::tuple>; TYPED_TEST_SUITE(TestGroupnorm, KernelTypes);