"docs/vscode:/vscode.git/clone" did not exist on "055b42c097eb1f44c5cc8e44664d16e0dc5f42d5"
Commit c2b24de5 authored by wsttiger's avatar wsttiger
Browse files

Added rocblas to requirements and formatting

parent 09d332d9
......@@ -159,8 +159,7 @@ struct miopen_gemm
}
argument compute(migraph::context& gctx, shape output_shape, std::vector<argument> args) const
{
// rocblas_handle_ptr handle_ptr = create_rocblas_handle_ptr();
auto& ctx = any_cast<miopen_context>(gctx);
auto& ctx = any_cast<miopen_context>(gctx);
float alpha = 1.0f;
float beta = 0.0f;
rocblas_int lda = args[0].get_shape().lens()[1];
......
......@@ -15,7 +15,8 @@ std::string miopen_target::name() const { return "miopen"; }
context miopen_target::get_context() const
{
return miopen_context{share(make_obj<miopen_handle>(&miopenCreate)), share(create_rocblas_handle_ptr())};
return miopen_context{share(make_obj<miopen_handle>(&miopenCreate)),
share(create_rocblas_handle_ptr())};
}
} // namespace miopen
......
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