We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
most kernels expect type of scalars to match the types of arguments/results, thus
float* A, B, C; btas::contract(1.0, A, {1, 2}, B, {2, 3}, 0.0, C, {1, 3});
fails to compile.
need to convert scalars to the type of result when dispatching to BLAS/LAPACK kernels
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
most kernels expect type of scalars to match the types of arguments/results, thus
fails to compile.
need to convert scalars to the type of result when dispatching to BLAS/LAPACK kernels
The text was updated successfully, but these errors were encountered: