Skip to content

Commit

Permalink
Fix bot's error
Browse files Browse the repository at this point in the history
  • Loading branch information
xhcao committed Feb 20, 2023
1 parent ff60fc2 commit 9dc5be6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tfjs-backend-webgpu/src/kernels/ResizeBilinearGrad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ export function resizeBilinearGrad(args: {
const {images, dy} = inputs;
const {alignCorners} = attrs;

const [, xHeight, xWidth, ] = images.shape as [number, number, number, number];
const [, xHeight, xWidth, ] =
images.shape as [number, number, number, number];
const [, yHeight, yWidth] = dy.shape as [number, number, number, number];

const effectiveXSize: [number, number] = [
Expand Down

0 comments on commit 9dc5be6

Please sign in to comment.