Skip to content

Commit 6a91e00

Browse files
committed
mv files
1 parent deb5369 commit 6a91e00

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ filegroup(
204204
filegroup(
205205
name = "aten_native_eigen_cpp",
206206
srcs = glob([
207-
"aten/src/ATen/native/eigen/*.cpp",
207+
"aten/src/ATen/native/sparse/eigen/*.cpp",
208208
]),
209209
)
210210

aten/src/ATen/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ file(GLOB native_mkldnn_cpp "native/mkldnn/*.cpp")
8686
file(GLOB vulkan_cpp "vulkan/*.cpp")
8787
file(GLOB native_vulkan_cpp "native/vulkan/*.cpp" "native/vulkan/api/*.cpp" "native/vulkan/impl/*.cpp" "native/vulkan/ops/*.cpp")
8888

89-
file(GLOB native_eigen_cpp "native/eigen/*.cpp")
89+
file(GLOB native_eigen_cpp "native/sparse/eigen/*.cpp")
9090

9191
# Metal
9292
file(GLOB metal_h "metal/*.h")

aten/src/ATen/native/sparse/SparseBlasImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#if !AT_USE_MKL_SPARSE()
2222
#include <ATen/Dispatch.h>
2323
#include <ATen/Parallel.h>
24-
#include <ATen/native/eigen/SparseBlasImpl.h>
24+
#include <ATen/native/sparse/eigen/SparseBlasImpl.h>
2525
#endif
2626

2727
namespace at::native::sparse::impl {

aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
#endif
120120

121121
#if !AT_USE_MKL_SPARSE()
122-
#include <ATen/native/eigen/SparseBlasImpl.h>
122+
#include <ATen/native/sparse/eigen/SparseBlasImpl.h>
123123
#endif
124124

125125
#include <algorithm>

aten/src/ATen/native/eigen/SparseBlasImpl.cpp renamed to aten/src/ATen/native/sparse/eigen/SparseBlasImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <ATen/native/eigen/SparseBlasImpl.h>
1+
#include <ATen/native/sparse/eigen/SparseBlasImpl.h>
22

33
#include <ATen/Tensor.h>
44
#include <ATen/Dispatch.h>

0 commit comments

Comments
 (0)