aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/linear_regression
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2023-06-13 11:05:01 +0300
committeralexv-smirnov <alex@ydb.tech>2023-06-13 11:05:01 +0300
commitbf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0 (patch)
tree1d1df72c0541a59a81439842f46d95396d3e7189 /library/cpp/linear_regression
parent8bfdfa9a9bd19bddbc58d888e180fbd1218681be (diff)
downloadydb-bf0f13dd39ee3e65092ba3572bb5b1fcd125dcd0.tar.gz
add ymake export to ydb
Diffstat (limited to 'library/cpp/linear_regression')
-rw-r--r--library/cpp/linear_regression/benchmark/ya.make13
-rw-r--r--library/cpp/linear_regression/ut/ya.make13
-rw-r--r--library/cpp/linear_regression/ya.make18
3 files changed, 44 insertions, 0 deletions
diff --git a/library/cpp/linear_regression/benchmark/ya.make b/library/cpp/linear_regression/benchmark/ya.make
new file mode 100644
index 0000000000..5a2f1ebb5d
--- /dev/null
+++ b/library/cpp/linear_regression/benchmark/ya.make
@@ -0,0 +1,13 @@
+PROGRAM(linear_regression_benchmark)
+
+SRCS(
+ pool.h
+ pool.cpp
+ main.cpp
+)
+
+PEERDIR(
+ library/cpp/linear_regression
+)
+
+END()
diff --git a/library/cpp/linear_regression/ut/ya.make b/library/cpp/linear_regression/ut/ya.make
new file mode 100644
index 0000000000..18e8e5eff0
--- /dev/null
+++ b/library/cpp/linear_regression/ut/ya.make
@@ -0,0 +1,13 @@
+UNITTEST()
+
+PEERDIR(
+ ADDINCL library/cpp/linear_regression
+)
+
+SRCDIR(library/cpp/linear_regression)
+
+SRCS(
+ linear_regression_ut.cpp
+)
+
+END()
diff --git a/library/cpp/linear_regression/ya.make b/library/cpp/linear_regression/ya.make
new file mode 100644
index 0000000000..504de7ee6e
--- /dev/null
+++ b/library/cpp/linear_regression/ya.make
@@ -0,0 +1,18 @@
+LIBRARY()
+
+SRCS(
+ linear_regression.cpp
+ unimodal.cpp
+ welford.cpp
+)
+
+PEERDIR(
+ library/cpp/accurate_accumulate
+)
+
+END()
+
+RECURSE(
+ benchmark
+ ut
+)