#pragma once #include #include #include namespace arith { float sqrt(float x); float mean(const std::vector& x); template void mm(const std::vector& a, const std::vector& b, std::vector& c, size_t m, size_t k, size_t n) { // 补全这里,谢谢 } template void vector_scalar_max(const std::vector& a, std::vector &b, T scalar) { // 补全这里,谢谢 } }