Skip to content

Commit

Permalink
Remove needless maybe_unused attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
hseok-oh committed Nov 21, 2024
1 parent 5a062ee commit 98720ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ inline void DepthwiseConvHybridPerChannel(const DepthwiseConvParams &params,
const int filter_width = filter_shape.Dims(2);
const int output_height = output_shape.Dims(1);
const int output_width = output_shape.Dims(2);
[[maybe_unused]] const int bias_depth = bias_shape.FlatSize();
const int bias_depth = bias_shape.FlatSize();
assert(output_depth == input_depth * depth_multiplier);
assert(bias_depth == output_depth);

Expand Down

0 comments on commit 98720ce

Please sign in to comment.