Skip to content

Commit bb43a0f

Browse files
authored
[js/webgpu] minor fixes to make tinyllama work (#19564)
1 parent aec2389 commit bb43a0f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

js/web/lib/wasm/jsep/webgpu/ops/concat.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,9 @@ const createConcatProgramInfo = (inputs: readonly TensorView[], axis: number): P
154154

155155
export const concat = (context: ComputeContext, attributes: ConcatAttributes): void => {
156156
validateInputs(context.inputs);
157-
context.compute(createConcatProgramInfo(context.inputs, attributes.axis));
157+
// 0 length tensors are valid for concat, remove them
158+
const nonEmptyInputs = context.inputs.filter(input => ShapeUtil.size(input.dims) > 0);
159+
context.compute(createConcatProgramInfo(nonEmptyInputs, attributes.axis), {inputs: nonEmptyInputs});
158160
};
159161

160162
export const parseConcatAttributes = (attributes: Record<string, unknown>): ConcatAttributes =>

js/web/lib/wasm/jsep/webgpu/ops/gather.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const createGatherProgramInfo = (inputs: readonly TensorView[], attributes: Gath
5555
if (idx${x} < 0) {
5656
idx${x} = idx${x} + uniforms.axisDimLimit;
5757
}
58-
var dataIndices${x} = ${data.type.indices}(0);
58+
var dataIndices${x} : ${data.type.indices};
5959
`;
6060
for (let i = 0, j = 0; i < inputRank; i++) {
6161
if (i === axis) {

0 commit comments

Comments
 (0)