Remove unnecessary ATen/core/EnableNamedTensor.h (#31117)

Summary:
Pull Request resolved: https://github.com/pytorch/pytorch/pull/31117

After this diff, we will have completely removed the named tensor
feature flagging. This means that named tensors are always on and that
there is no mechanism to turn them off. There should be no more follow-up
diffs.

I performed the deletion of the header with
```
find . -type f -print0 | xargs -0 sed -i '/#include
<ATen\/core\/EnableNamedTensor.h>/d'
```

Test Plan: - wait for CI

Differential Revision: D18934952

Pulled By: zou3519

fbshipit-source-id: 253d059074b910fef15bdf885ebf71e0edf5bea5
This commit is contained in:
Richard Zou
2019-12-12 09:50:59 -08:00
committed by Facebook Github Bot
parent 9047d4df45
commit bcb0bb7e0e
62 changed files with 0 additions and 63 deletions

View File

@ -2,7 +2,6 @@
#include <torch/csrc/Exceptions.h>
#include <torch/csrc/utils/python_strings.h>
#include <c10/util/flat_hash_map.h>
#include <ATen/core/EnableNamedTensor.h>
namespace torch {