Skip to content

Commit

Permalink
Fix wasm func signature
Browse files Browse the repository at this point in the history
  • Loading branch information
chunnienc committed Jan 23, 2023
1 parent 3f25c9d commit a03638f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tfjs-backend-wasm/src/cc/kernels/MaxPool3DGrad.cc
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void MaxPool3DGrad(int x_id, int dy_id, int dx_id, int batch_size,
int dilation_depth, int dilation_height, int dilation_width,
int effective_filter_depth, int effective_filter_height,
int effective_filter_width, int pad_front, int pad_top,
int pad_left, int filter_depth) {
int pad_left) {
const TensorInfo& x_info = backend::get_tensor_info(x_id);
const TensorInfo& dy_info = backend::get_tensor_info(dy_id);
TensorInfo& dx_info = backend::get_tensor_info_out(dx_id);
Expand Down

0 comments on commit a03638f

Please sign in to comment.