File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
core/providers/webgpu/math Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -71,10 +71,8 @@ Status GemmProgram::GenerateShaderCode(ShaderHelper& shader) const {
7171 // calculateBeta
7272 if (has_C_input_) {
7373 const ShaderVariableHelper& C = shader.AddInput (" C" , ShaderUsage::UseUniform | ShaderUsage::UseIndicesTypeAlias);
74- if (beta_) {
7574 shader.MainFunctionBody () << " value = value + A_value_t(uniforms.beta) * "
7675 << C.GetByOffset (C.BroadcastedIndicesToOffset (" vec2(m, n)" , output)) << " ;\n " ;
77- }
7876 }
7977
8078 shader.MainFunctionBody () << output.SetByOffset (" global_idx" , " value" ) << " \n " ;
Original file line number Diff line number Diff line change @@ -763,7 +763,7 @@ TYPED_TEST(GemmOpTypedTests, ZeroKWithBias) {
763763
764764 test.ConfigExcludeEps ({kCoreMLExecutionProvider , kNnapiExecutionProvider ,
765765 kDmlExecutionProvider , kDnnlExecutionProvider , kQnnExecutionProvider ,
766- kOpenVINOExecutionProvider })
766+ kOpenVINOExecutionProvider , kWebGpuExecutionProvider })
767767 .Config (run_with_tunable_op)
768768 .RunWithConfig ();
769769}
@@ -782,7 +782,7 @@ TYPED_TEST(GemmOpTypedTests, ZeroKWithNoBias) {
782782
783783 test.ConfigExcludeEps ({kCoreMLExecutionProvider , kNnapiExecutionProvider ,
784784 kDmlExecutionProvider , kDnnlExecutionProvider , kQnnExecutionProvider ,
785- kOpenVINOExecutionProvider })
785+ kOpenVINOExecutionProvider , kWebGpuExecutionProvider })
786786 .Config (run_with_tunable_op)
787787 .RunWithConfig ();
788788}
You can’t perform that action at this time.
0 commit comments