Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad authored and cwpearson committed Sep 19, 2023
1 parent a6f0a2a commit 71df8ed
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
8 changes: 0 additions & 8 deletions packages/kokkos-kernels/blas/src/KokkosBlas2_gemv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,6 @@ void gemv(const execution_space& space, const char trans[],
Kokkos::SpaceAccessibility<execution_space,
typename YViewType::memory_space>::accessible,
"KokkosBlas::gemv: YViewType must be accessible from execution_space");
static_assert(
Kokkos::SpaceAccessibility<typename YViewType::memory_space,
typename AViewType::memory_space>::assignable,
"KokkosBlas::gemv: AViewType must be assignable to YViewType");
static_assert(
Kokkos::SpaceAccessibility<typename YViewType::memory_space,
typename XViewType::memory_space>::assignable,
"KokkosBlas::gemv: XViewType must be assignable to YViewType");

// Check compatibility of dimensions at run time.
if (trans[0] == 'N' || trans[0] == 'n') {
Expand Down
8 changes: 0 additions & 8 deletions packages/kokkos-kernels/blas/src/KokkosBlas3_gemm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,14 +142,6 @@ void gemm(const execution_space& space, const char transA[],
Kokkos::SpaceAccessibility<execution_space,
typename CViewType::memory_space>::accessible,
"KokkosBlas::gemm: CViewType must be accessible from execution_space");
static_assert(
Kokkos::SpaceAccessibility<typename CViewType::memory_space,
typename AViewType::memory_space>::assignable,
"KokkosBlas::gemm: CViewType must be assignable by AViewType");
static_assert(
Kokkos::SpaceAccessibility<typename CViewType::memory_space,
typename BViewType::memory_space>::assignable,
"KokkosBlas::gemm: CViewType must be assignable by BViewType");

// Check validity of transpose argument
bool valid_transA = (transA[0] == 'N') || (transA[0] == 'n') ||
Expand Down

0 comments on commit 71df8ed

Please sign in to comment.