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

github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2018-06-17 16:04:42 +0300
committerKenneth Heafield <github@kheafield.com>2018-06-17 16:04:42 +0300
commitd89390134de48d7551ac6ed1e4b607c1018f9632 (patch)
tree908cb0b66933e9530484f736be68a673fc58edd7 /Makefile
parentfd63cf1a77e192e09e36eac0b8d74969f44a3342 (diff)
Fix transpose
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6ea1cb9..60a9e97 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
CXX := g++
CXXFLAGS := -Wall -Werror -fPIC -O3 -march=native
-SRC := avx512_gemm.cc avx2_gemm.cc sse2_gemm.cc SSE_Matrix_Mult.cc Quantize.cc StopWatch.cc
+SRC := avx512_gemm.cc avx2_gemm.cc sse2_gemm.cc SSE_Matrix_Mult.cc StopWatch.cc
OBJ := ${SRC:.cc=.o}
all: Test QuantizeTest Benchmark
@@ -17,7 +17,7 @@ Benchmark: ${OBJ} Benchmark.o
QuantizeTest: QuantizeTest.o StopWatch.o avx512_gemm.o avx2_gemm.o sse2_gemm.o
${CXX} ${CXXFLAGS} QuantizeTest.o avx512_gemm.o avx2_gemm.o sse2_gemm.o -o QuantizeTest
-.c.o:
+.c.o: interleave.h
${CXX} ${CXXFLAGS} -c $<
clean: