summaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authoreivanov89 <[email protected]>2025-12-05 16:58:01 +0300
committereivanov89 <[email protected]>2025-12-05 17:24:37 +0300
commitde7ba2daff46407dd15daa802fef35a16eacc399 (patch)
treea33c0419a69c0c5fdbb49b03db2ed2f61e1cb3b9 /library/cpp
parent8a5f497d2c8066c18b6ac28c3a979b452b6e48f9 (diff)
Properly init pointer when no avx2
commit_hash:9c39c2ba0ff9c555e6f5da0bbe3d8be5a04d6654
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/dot_product/dot_product.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/cpp/dot_product/dot_product.cpp b/library/cpp/dot_product/dot_product.cpp
index bb89c81c870..79ccbdb3b7d 100644
--- a/library/cpp/dot_product/dot_product.cpp
+++ b/library/cpp/dot_product/dot_product.cpp
@@ -37,6 +37,7 @@ namespace NDotProductImpl {
DotProductI32Impl = &DotProductSse;
DotProductFloatImpl = &DotProductSse;
DotProductDoubleImpl = &DotProductSse;
+ TriWayDotProductImpl = &TriWayDotProductSse;
#endif
}
return 0;