mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
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
15 lines
351 B
C++
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;
|
|
}
|