ggml-webgpu: add support for f16 repeat (#26307)

This commit is contained in:
Masashi Yoshimura
2026-08-02 08:28:31 +02:00
committed by GitHub
parent 11924d4c17
commit 7a2db1a0cf
4 changed files with 10 additions and 1 deletions
@@ -2774,6 +2774,10 @@ class ggml_webgpu_shader_lib {
defines.push_back("TYPE_F32");
variant += "_f32";
break;
case GGML_TYPE_F16:
defines.push_back("TYPE_F16");
variant += "_f16";
break;
case GGML_TYPE_I32:
defines.push_back("TYPE_I32");
variant += "_i32";