Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Fix joint_matrix guard
Browse files Browse the repository at this point in the history
  • Loading branch information
pgorlani committed Oct 24, 2023
1 parent 19b0fed commit 719bcd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/operations/blas3/gemm_local_joint_matrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#ifndef PORTBLAS_BLAS3_LOCAL_GEMM_JOINT_MATRIX_HPP
#define PORTBLAS_BLAS3_LOCAL_GEMM_JOINT_MATRIX_HPP

#ifdef SB_ENABLE_JOINT_MATRIX

#include "gemm_common.hpp"
#include "gemm_load_store_joint_matrix.hpp"

Expand Down Expand Up @@ -66,7 +68,6 @@ namespace blas {
* @tparam UseJointMatrix boolean parameter to decide whether to use
* joint_matrix or not
*/
#ifdef SB_ENABLE_JOINT_MATRIX
template <typename input_t, typename output_t, bool DoubleBuffer, bool NbcA,
bool NbcB, int ClSize, typename TileType, bool TransA, bool TransB,
bool SymmA, bool SymmB, typename element_t, bool is_beta_zero,
Expand Down Expand Up @@ -870,8 +871,7 @@ class Gemm<input_t, output_t, DoubleBuffer, NbcA, NbcB, ClSize, TileType,

}; // Gemm

#endif

} // namespace blas

#endif // SB_ENABLE_JOINT_MATRIX
#endif // PORTBLAS_BLAS3_LOCAL_GEMM_JOINT_MATRIX_HPP

0 comments on commit 719bcd4

Please sign in to comment.