From b0f61d8fbbc28a09de0017b93171ad99fb3a30be Mon Sep 17 00:00:00 2001 From: Guangda Lai <31743510+aaroey@users.noreply.github.com> Date: Thu, 7 Nov 2019 07:44:46 -0800 Subject: [PATCH] Add some changes to trigger copybara import again. --- tensorflow/core/kernels/generate_box_proposals_op.cu.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tensorflow/core/kernels/generate_box_proposals_op.cu.cc b/tensorflow/core/kernels/generate_box_proposals_op.cu.cc index fed27f0c27c..344d71bfc59 100644 --- a/tensorflow/core/kernels/generate_box_proposals_op.cu.cc +++ b/tensorflow/core/kernels/generate_box_proposals_op.cu.cc @@ -13,8 +13,6 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -// An example Op. - #if GOOGLE_CUDA #define EIGEN_USE_GPU @@ -82,8 +80,7 @@ __global__ void GeneratePreNMSUprightBoxesKernel( // box_conv_index : # of the same box, but indexed in the // scores from the conv layer, of shape (height,width,num_anchors) the // num_images dimension was already removed box_conv_index = - // a*image_stride + h*width - // + w + // a*image_stride + h*width + w const int box_conv_index = d_sorted_scores_keys[image_index * image_stride + ibox];