Skip to content

Commit

Permalink
Tensor construction codemod - 3/3 (#14835)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: pytorch/pytorch#14835

Codemod generated with clangr shard mode, 25 files per diff,
motivation: pytorch/pytorch#12407

Reviewed By: bddppq

Differential Revision: D13335184

fbshipit-source-id: 26d8247e16b30bdff045530034af9b72c76d066f
  • Loading branch information
jerryzh168 authored and facebook-github-bot committed Dec 6, 2018
1 parent 20d1bff commit b5db6ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/detectron/upsample_nearest_op.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class UpsampleNearestOp final : public Operator<Context> {

bool RunOnDevice() override {
auto& X = Input(0);
auto* Y = Output(0);

auto out_shape = X.sizes().vec();
out_shape[X.dim() - 1] *= scale_;
out_shape[X.dim() - 2] *= scale_;
Y->Resize(out_shape);
auto* Y = Output(0, out_shape, at::dtype<T>());

int d1;
int d2;
Expand Down

0 comments on commit b5db6ac

Please sign in to comment.