pytorch/caffe2/core/tensor_impl.h
Edward Yang 0b6186d778 Remove Tensor.h, TensorMethods.h from src/core. (#27086)
Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/27086

This is a major source of merge conflicts, and AFAICT isn't necessary anymore (it may have been necessary for some mobile build stuff in the past).

This is a commandeer of #25031

Test Plan: Imported from OSS

Reviewed By: ljk53

Differential Revision: D17687345

Pulled By: ezyang

fbshipit-source-id: bf6131af835ed1f9e3c10699c81d4454a240445f
2019-10-06 09:37:50 -07:00

15 lines
351 B
C++

#pragma once
#include <ATen/core/DimVector.h>
#include <c10/core/TensorImpl.h>
#include <caffe2/core/context_base.h>
#include <caffe2/core/context_base.h>
namespace caffe2 {
using at::ToVectorint64_t;
using at::size_from_dim_;
using at::size_to_dim_;
using at::size_between_dim_;
using at::canonical_axis_index_;
using at::TensorImpl;
}