Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
axinging committed Nov 3, 2023
1 parent a0aa145 commit c617826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/web/lib/wasm/jsep/webgpu/ops/concat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const createConcatProgramInfo = (inputs: readonly TensorView[], axis: number): P
enableInputShapesUniforms.push(enableShapesUniforms(inputs[i].dims.length));
inputShapeOrRanks.push(enableInputShapesUniforms[i] ? inputs[i].dims.length : inputs[i].dims);
inputVars[i] = inputVariable(`input${i}`, dataType, inputShapeOrRanks[i]);
inputDependencies.push('rank');
inputDependencies.push(enableInputShapesUniforms[i] ? 'rank' : 'dims');
}
programUniforms.push({type: 'uint32', data: sizeInConcatAxis});
for (let i = 0; i < inputs.length; ++i) {
Expand Down

0 comments on commit c617826

Please sign in to comment.