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

Fix for rocblas builds #1871

Merged
merged 2 commits into from
Jun 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions blas/tpls/KokkosBlas2_syr_tpl_spec_decl_rocblas.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ namespace Impl {
const int N = static_cast<int>(A_is_lr ? A.extent(0) : A.extent(1)); \
constexpr int one = 1; \
const int LDA = A_is_lr ? A.stride(0) : A.stride(1); \
rocblas_fill fillMode = (uploChar == 'L' || uploChar == 'l') \
? rocblas_fill_lower \
: rocblas_fill_upper;
rocblas_fill fillMode = (*uplo == 'L' || *uplo == 'l') ? rocblas_fill_lower \
eeprude marked this conversation as resolved.
Show resolved Hide resolved
: rocblas_fill_upper;

#define KOKKOSBLAS2_DSYR_ROCBLAS(LAYOUT, EXEC_SPACE, MEM_SPACE, \
ETI_SPEC_AVAIL) \
Expand Down