6b8a7ab582
Sync public mirror / sync (push) Failing after 29s
almost complete. Need to doublecheck names for functions in *_serial.h
16 lines
339 B
C++
16 lines
339 B
C++
#pragma once
|
|
|
|
#include "./core/omp_config.h"
|
|
#include "detail/matmul_serial.h"
|
|
|
|
|
|
namespace numerics{
|
|
|
|
// ---------------- matmul ----------------
|
|
template <typename T>
|
|
inline utils::Matrix<T> matmul(const utils::Matrix<T>& A, const utils::Matrix<T>& B){
|
|
return detail::matmul_serial(A, B);
|
|
}
|
|
|
|
} // namespace numerics
|