Skip to content

Commit

Permalink
Merge pull request #4850 from martin-frbg/generic_3m
Browse files Browse the repository at this point in the history
Make the dummy GEMM3M kernel for GENERIC targets forward to regular GEMM for now
  • Loading branch information
martin-frbg committed Aug 7, 2024
2 parents 753c7eb + 46e331a commit deae7cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
9 changes: 0 additions & 9 deletions kernel/Makefile.L3
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ ifeq ($(ARCH), ia64)
USE_GEMM3M = 1
endif

ifneq ($(DYNAMIC_ARCH), 1)
ifeq ($(TARGET), GENERIC)
USE_GEMM3M = 0
endif
else
ifeq ($(CORE), GENERIC)
USE_GEMM3M = 0
endif
endif

ifeq ($(ARCH), arm)
USE_TRMM = 1
Expand Down
6 changes: 6 additions & 0 deletions kernel/generic/zgemm3mkernel_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,16 @@ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*****************************************************************************/
#if 1

#include "zgemmkernel_2x2.c"


#else
#include "common.h"

int CNAME(BLASLONG bm, BLASLONG bn, BLASLONG bk, FLOAT alphar, FLOAT alphai, FLOAT * ba, FLOAT * bb, FLOAT * C, BLASLONG ldc)
{
return 0;
}
#endif

0 comments on commit deae7cf

Please sign in to comment.