Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Common test infrastructure + PCA tests migration #1378

Merged
merged 24 commits into from
Jan 28, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix clang-format
Ruslan Israfilov committed Jan 25, 2021
commit e7f37332ae35b8034e8eddafdaeaca08e443f609
1 change: 0 additions & 1 deletion cpp/oneapi/dal/test/engine/common.hpp
Original file line number Diff line number Diff line change
@@ -85,7 +85,6 @@
#define TEMPLATE_LIST_TEST_M TEMPLATE_LIST_TEST_CASE_METHOD
#define TEMPLATE_SIG_TEST_M TEMPLATE_TEST_CASE_METHOD_SIG


#ifdef ONEDAL_DATA_PARALLEL
#define DECLARE_TEST_POLICY(policy_name) oneapi::dal::test::engine::device_test_policy policy_name
#else
14 changes: 12 additions & 2 deletions cpp/oneapi/dal/test/engine/mkl/blas.hpp
Original file line number Diff line number Diff line change
@@ -21,8 +21,18 @@
namespace oneapi::dal::test::engine::mkl {

template <typename Float>
void gemm(bool transa, bool transb, std::int64_t m, std::int64_t n, std::int64_t k, Float alpha, \
const Float *a, std::int64_t lda, const Float *b, std::int64_t ldb, Float beta, Float *c,
void gemm(bool transa,
bool transb,
std::int64_t m,
std::int64_t n,
std::int64_t k,
Float alpha,
const Float *a,
std::int64_t lda,
const Float *b,
std::int64_t ldb,
Float beta,
Float *c,
std::int64_t ldc);

} // namespace oneapi::dal::test::engine::mkl