@@ -1105,8 +1105,6 @@ TEST_P(OpDeviceFPTest, Conv1DPaddingAndStride) {
1105
1105
1106
1106
TEST_P (OpDeviceFPTest, Conv1DGroupNoBias) {
1107
1107
const Device device = GetParam ().device ;
1108
- if (device != Device::CPU)
1109
- GTEST_SKIP () << " Grouped convolution is not implemented for CUDA." ;
1110
1108
const DataType dtype = GetParam ().dtype ;
1111
1109
const float error = GetParam ().error ;
1112
1110
const StorageView expected ({2 , 2 , 2 }, std::vector<float >{
@@ -1136,7 +1134,7 @@ TEST_P(OpDeviceFPTest, Conv1DGroupNoBiasQuantized) {
1136
1134
#endif
1137
1135
const Device device = GetParam ().device ;
1138
1136
if (device != Device::CPU)
1139
- GTEST_SKIP () << " Grouped convolution is not implemented for CUDA." ;
1137
+ GTEST_SKIP () << " Grouped quantized convolution is not implemented for CUDA." ;
1140
1138
const DataType dtype = GetParam ().dtype ;
1141
1139
const float error = std::max (GetParam ().error , float (3e-3 ));
1142
1140
const StorageView expected ({2 , 2 , 2 }, std::vector<float >{
@@ -1166,8 +1164,6 @@ TEST_P(OpDeviceFPTest, Conv1DGroupNoBiasQuantized) {
1166
1164
1167
1165
TEST_P (OpDeviceFPTest, Conv1DGroup) {
1168
1166
const Device device = GetParam ().device ;
1169
- if (device != Device::CPU)
1170
- GTEST_SKIP () << " Grouped convolution is not implemented for CUDA." ;
1171
1167
const DataType dtype = GetParam ().dtype ;
1172
1168
const float error = GetParam ().error ;
1173
1169
const StorageView expected ({2 , 2 , 2 }, std::vector<float >{
0 commit comments