Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaya S Khudia <dskhudia@fb.com>2018-12-06 00:09:55 +0300
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2018-12-06 00:14:50 +0300
commit8b3e0a742a88f8d3bb247839b1f3d36161a66b91 (patch)
tree4539eadf5ece1b7313276773c813a3353cc80a86 /CMakeLists.txt
parentd5ff1fa847a3b4aab0eff547cb92bb76af99dac5 (diff)
File name change for FbgemmI8Depthwise.h and FbgemmI8Depthwise.cc (#14725)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/14725 Pull Request resolved: https://github.com/pytorch/FBGEMM/pull/33 Renaming FbgemmI8Depthwise.h to FbgemmI8DepthwiseAvx2.h and FbgemmI8Depthwise.cc to FbgemmI8DepthwiseAvx2.cc since FbgemmI8DepthwiseAvx2.cc will be compiled with avx2 flags Reviewed By: jianyuh Differential Revision: D13313898 fbshipit-source-id: a8111eacf3d79a466ce0565bfe5f2f0b200a5c33
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bd211e0..0261bb3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,7 +30,6 @@ set(FBGEMM_GENERIC_SRCS src/ExecuteKernel.cc
src/Fbgemm.cc
src/FbgemmFP16.cc
src/FbgemmFP16UKernels.cc
- src/FbgemmI8Depthwise.cc
src/FbgemmI8Spmdm.cc
src/GenerateKernelU8S8S32ACC16.cc
src/GenerateKernelU8S8S32ACC16_avx512.cc
@@ -65,6 +64,7 @@ endif()
#All the source files that either use avx2 instructions statically
set(FBGEMM_AVX2_SRCS
+ src/FbgemmI8DepthwiseAvx2.cc
src/OptimizedKernelsAvx2.cc
src/QuantUtilsAvx2.cc
src/Utils_avx2.cc)