Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose linalg::dot in public API #968

Merged
merged 14 commits into from
Nov 10, 2022
Prev Previous commit
Next Next commit
fix
  • Loading branch information
benfred committed Nov 9, 2022
commit a125c4f7ea5b90cdd7b0e81ac7c980553f0a03ce
2 changes: 1 addition & 1 deletion cpp/include/raft/core/device_mdspan.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ auto make_device_vector_view(
template <typename Extents, typename Strides>
auto make_strided_layout(Extents extents, Strides strides)
{
return layout_stride::mapping<ExtentType>{extents, strides};
return layout_stride::mapping<Extents>{extents, strides};
}

/**
Expand Down