aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/dot_product/ya.make
blob: b308967b4be7915b982b347fc382c591c35049cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
LIBRARY()

SRCS(
    dot_product.cpp
    dot_product_sse.cpp
    dot_product_simple.cpp
)

IF (USE_SSE4 == "yes" AND OS_LINUX == "yes")
    SRC_C_AVX2(dot_product_avx2.cpp -mfma)
ELSE()
    SRC(dot_product_avx2.cpp)
ENDIF()

PEERDIR(
    library/cpp/sse
    library/cpp/testing/common
)

END()