Commit b1d25f8f authored by turneram's avatar turneram
Browse files

Remove const from p_t param

parent e27e3e13
......@@ -34,7 +34,7 @@
namespace migraphx {
template <class T, class U, class V, class W>
__device__ void ck_gemm(const T& a_t, const U& b_t, const V& c_t, const W& p_t)
__device__ void ck_gemm(const T& a_t, const U& b_t, const V& c_t, W& p_t)
{
static gemm tp{};
using GridwiseGemm = decltype(tp.gg);
......
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