diff options
author | Vlad Yaroslavlev <vladon@vladon.com> | 2022-02-10 16:46:25 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:25 +0300 |
commit | 344ea37b4a345701ab0e67de2266a1c1bd7baf2d (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/accurate_accumulate | |
parent | 706b83ed7de5a473436620367af31fc0ceecde07 (diff) | |
download | ydb-344ea37b4a345701ab0e67de2266a1c1bd7baf2d.tar.gz |
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/accurate_accumulate')
-rw-r--r-- | library/cpp/accurate_accumulate/accurate_accumulate.h | 8 | ||||
-rw-r--r-- | library/cpp/accurate_accumulate/benchmark/main.cpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/accurate_accumulate/accurate_accumulate.h b/library/cpp/accurate_accumulate/accurate_accumulate.h index 87f12d632e..dacced17e9 100644 --- a/library/cpp/accurate_accumulate/accurate_accumulate.h +++ b/library/cpp/accurate_accumulate/accurate_accumulate.h @@ -184,7 +184,7 @@ static inline double FastAccumulate(It begin, It end) { } template <typename T> -static inline double FastAccumulate(const TVector<T>& sequence) { +static inline double FastAccumulate(const TVector<T>& sequence) { return FastAccumulate(sequence.begin(), sequence.end()); } @@ -194,7 +194,7 @@ static inline double FastKahanAccumulate(It begin, It end) { } template <typename T> -static inline double FastKahanAccumulate(const TVector<T>& sequence) { +static inline double FastKahanAccumulate(const TVector<T>& sequence) { return FastKahanAccumulate(sequence.begin(), sequence.end()); } @@ -204,7 +204,7 @@ static inline double FastInnerProduct(It1 begin1, It1 end1, It2 begin2) { } template <typename T> -static inline double FastInnerProduct(const TVector<T>& lhs, const TVector<T>& rhs) { +static inline double FastInnerProduct(const TVector<T>& lhs, const TVector<T>& rhs) { Y_ASSERT(lhs.size() == rhs.size()); return FastInnerProduct(lhs.begin(), lhs.end(), rhs.begin()); } @@ -215,7 +215,7 @@ static inline double FastKahanInnerProduct(It1 begin1, It1 end1, It2 begin2) { } template <typename T> -static inline double FastKahanInnerProduct(const TVector<T>& lhs, const TVector<T>& rhs) { +static inline double FastKahanInnerProduct(const TVector<T>& lhs, const TVector<T>& rhs) { Y_ASSERT(lhs.size() == rhs.size()); return FastKahanInnerProduct(lhs.begin(), lhs.end(), rhs.begin()); } diff --git a/library/cpp/accurate_accumulate/benchmark/main.cpp b/library/cpp/accurate_accumulate/benchmark/main.cpp index 11f5d7d843..3c5e6e775d 100644 --- a/library/cpp/accurate_accumulate/benchmark/main.cpp +++ b/library/cpp/accurate_accumulate/benchmark/main.cpp @@ -10,7 +10,7 @@ namespace { template <typename T, size_t N> struct TNormalizedExamplesHolder { - TVector<T> Examples; + TVector<T> Examples; TNormalizedExamplesHolder() : Examples(N) { @@ -23,7 +23,7 @@ namespace { template <typename T, size_t N> struct TExamplesHolder { - TVector<T> Examples; + TVector<T> Examples; TExamplesHolder() : Examples(N) { |