"README_ORIGIN.md" did not exist on "0cfa6a122b77f7da018772cba18ea63b94c1d048"
Commit 6a825932 authored by Alan Turner's avatar Alan Turner
Browse files

Formatting

parent 4248a5cd
...@@ -64,6 +64,7 @@ MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_CK_TUNING); ...@@ -64,6 +64,7 @@ MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_CK_TUNING);
MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_CK_TUNING_VALUE); MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_CK_TUNING_VALUE);
MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_CK_DEBUG); MIGRAPHX_DECLARE_ENV_VAR(MIGRAPHX_CK_DEBUG);
// NOLINTNEXTLINE // NOLINTNEXTLINE
static const char* const ck_gemm_kernel = R"__migraphx__( static const char* const ck_gemm_kernel = R"__migraphx__(
#include <args.hpp> #include <args.hpp>
......
...@@ -53,10 +53,10 @@ __device__ void ck_gemm_matrix(E e, A a, B b, Ds... ds) ...@@ -53,10 +53,10 @@ __device__ void ck_gemm_matrix(E e, A a, B b, Ds... ds)
ck::make_tuple(to_ck_tensor<Ds>()...), ck::make_tuple(to_ck_tensor<Ds>()...),
to_ck_tensor<E>()); to_ck_tensor<E>());
G::Run(desc, G::Run(desc,
to_ck_const_pointer(a.data()), to_ck_const_pointer(a.data()),
to_ck_const_pointer(b.data()), to_ck_const_pointer(b.data()),
ck::make_tuple(to_ck_const_pointer(ds.data())...), ck::make_tuple(to_ck_const_pointer(ds.data())...),
to_ck_pointer(e.data())); to_ck_pointer(e.data()));
} }
template <class G, index_int BlocksPerBatch, class... Ts> template <class G, index_int BlocksPerBatch, class... Ts>
...@@ -67,4 +67,4 @@ __device__ void ck_gemm(Ts... xs) ...@@ -67,4 +67,4 @@ __device__ void ck_gemm(Ts... xs)
} }
} // namespace migraphx } // namespace migraphx
#endif #endif
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment