Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start Porting Shumai Tests #1128

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
18 changes: 17 additions & 1 deletion flashlight/fl/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,23 @@ endif ()
build_test(SRC ${DIR}/tensor/TensorBaseTest.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/TensorBinaryOpsTest.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/TensorBLASTest.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/TensorReductionTest.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/All.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Amax.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Amin.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Any.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Argmax.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Argmin.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/CountNonzero.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Cumsum.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Max.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Mean.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Median.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Min.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Norm.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Std.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Sum.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/reduction/Var.cpp LIBS ${LIBS})

build_test(SRC ${DIR}/tensor/TensorUnaryOpsTest.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/ComputeTest.cpp LIBS ${LIBS})
build_test(SRC ${DIR}/tensor/IndexTest.cpp LIBS ${LIBS})
Expand Down
Loading
Loading