@@ -19,7 +19,7 @@ import { gather, parseGatherAttributes } from './ops/gather';
19
19
import { gatherBlockQuantized , parseGatherBlockQuantizedAttributes } from './ops/gather-block-quantized' ;
20
20
import { gatherElements , parseGatherElementsAttributes } from './ops/gather-elements' ;
21
21
import { gemm , parseGemmAttributes } from './ops/gemm' ;
22
- import { groupQueryAttention , parseGroupQueryAttentionAttributes } from './ops/group-query-attention' ;
22
+ import { groupQueryAttention } from './ops/group-query-attention' ;
23
23
import { instanceNorm } from './ops/instance-norm' ;
24
24
import { layerNorm } from './ops/layer-norm' ;
25
25
import { matMul } from './ops/matmul' ;
@@ -104,7 +104,7 @@ export const WEBGPU_OP_RESOLVE_RULES: Map<string, OperatorImplementation> = new
104
104
[ 'GlobalMaxPool' , [ pool . globalMaxPool , pool . parseGlobalMaxPoolAttributes ] ] ,
105
105
[ 'Greater' , [ binaryOps . greater ] ] ,
106
106
[ 'GreaterOrEqual' , [ binaryOps . greaterOrEqual ] ] ,
107
- [ 'GroupQueryAttention' , [ groupQueryAttention , parseGroupQueryAttentionAttributes ] ] ,
107
+ [ 'GroupQueryAttention' , [ groupQueryAttention ] ] ,
108
108
[ 'HardSigmoid' , [ unaryOps . hardSigmoid , unaryOps . parseHardSigmoidAttributes ] ] ,
109
109
[ 'InstanceNormalization' , [ instanceNorm ] ] ,
110
110
[ 'LayerNormalization' , [ layerNorm ] ] ,
0 commit comments