Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Removed trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgoggins committed Feb 18, 2020
1 parent 9a0b9d5 commit 871849e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/spatial_transformer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ inline void BilinearSamplingForward(const Tensor<cpu, 4, DType> &output,
if (between(top_left_x, lower_bound, i_w-1) &&
between(top_left_y, lower_bound, i_h-1))
top_left_v = *(data + data_index);
if (between(top_left_x + 1, lower_bound, i_w-1) &&
if (between(top_left_x + 1, lower_bound, i_w-1) &&
between(top_left_y, lower_bound, i_h-1))
top_right_v = *(data + data_index + 1);
if (between(top_left_x, lower_bound, i_w-1) &&
Expand Down

0 comments on commit 871849e

Please sign in to comment.