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

Commit

Permalink
Addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
OuadiElfarouki authored and s-Nick committed Apr 10, 2024
1 parent 3568b48 commit aca6ee0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/interface/blas3/backend/intel_gpu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ _gemm(sb_handle_t& sb_handle, index_t _M, index_t _N, index_t _K,
const typename sb_handle_t::event_t& _dependencies) {
// The symmetric matrice(s) cases are not enabled with half (fp16) as the Symm
// operator's specification doesn't include half floating point data.
if constexpr (s_a && s_b || ((s_a && _t_b) || (s_b && _t_a))) {
if constexpr (s_a || s_b) {
return _dependencies;
} else {
if (batch_type == gemm_batch_type_t::interleaved) {
Expand Down
2 changes: 1 addition & 1 deletion src/interface/blas3/backend/nvidia_gpu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ _gemm(sb_handle_t& sb_handle, index_t _M, index_t _N, index_t _K,
const typename sb_handle_t::event_t& _dependencies) {
// The symmetric matrice(s) cases are not enabled with half (fp16) as the Symm
// operator's specification doesn't include half floating point data.
if constexpr (s_a && s_b || ((s_a && _t_b) || (s_b && _t_a))) {
if constexpr (s_a || s_b) {
return _dependencies;
} else {
if (batch_type == gemm_batch_type_t::interleaved) {
Expand Down

0 comments on commit aca6ee0

Please sign in to comment.