summaryrefslogtreecommitdiffstats
path: root/library/cpp/dot_product/ya.make
blob: fea9ba8152c3ffa000ac3dd584f379048e8c19cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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()

RECURSE(
    ut
)