Skip to content

Commit b803429

Browse files
[Native WebGPU] Exclude WebGPU EP from ConvFp16 3D tests. (microsoft#24327)
### Description Exclude WebGPU from Conv3D tests ### Motivation and Context Fix failing tests in packaging pipelines.
1 parent ca1b32d commit b803429

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

onnxruntime/test/providers/cpu/nn/conv_fp16_test.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ TEST(ConvFp16Test, Conv3D_1) {
518518
vector<int64_t>{1, 1, 1}, // kernel_shape
519519
vector<int64_t>{0, 0, 0, 0, 0, 0}, // pads
520520
vector<int64_t>{1, 1, 1}, // strides
521-
{} // excluded EPs
521+
{kWebGpuExecutionProvider} // excluded EPs
522522
};
523523

524524
vector<MLFloat16> X = {
@@ -557,7 +557,7 @@ TEST(ConvFp16Test, Conv3D_2) {
557557
vector<int64_t>{1, 1, 1}, // kernel_shape
558558
vector<int64_t>{2, 2, 2, 2, 2, 2}, // pads
559559
vector<int64_t>{2, 2, 2}, // strides
560-
{} // excluded EPs
560+
{kWebGpuExecutionProvider} // excluded EPs
561561
};
562562

563563
vector<MLFloat16> X = {
@@ -601,7 +601,7 @@ TEST(ConvFp16Test, Conv3D_Bias) {
601601
vector<int64_t>{2, 2, 2}, // kernel_shape
602602
vector<int64_t>{2, 2, 2, 2, 2, 2}, // pads
603603
vector<int64_t>{2, 2, 2}, // strides
604-
{} // excluded EPs
604+
{kWebGpuExecutionProvider} // excluded EPs
605605
};
606606

607607
vector<MLFloat16> X = {
@@ -1082,7 +1082,7 @@ TEST(ConvFp16Test, Pointwise_3D) {
10821082
vector<int64_t>{1, 1, 1}, // kernel_shape
10831083
vector<int64_t>{0, 0, 0, 0, 0, 0}, // pads
10841084
vector<int64_t>{1, 1, 1}, // strides
1085-
{} // excluded EPs
1085+
{kWebGpuExecutionProvider} // excluded EPs
10861086
};
10871087

10881088
vector<MLFloat16> X = {

0 commit comments

Comments
 (0)