Improved Ximatcopy when lda==ldb.
authorMartin Koehler <grisuthedragon@users.noreply.github.com>
Mon, 7 Sep 2015 12:33:26 +0000 (14:33 +0200)
committerMartin Koehler <grisuthedragon@users.noreply.github.com>
Mon, 7 Sep 2015 12:36:16 +0000 (14:36 +0200)
commit711ca33bc6da03daf2115c7a82ae2a56f73d67a3
treedc80475014b4696dde35e95f7e6b6ba248e8c6e2
parent40a3fed6b80523edc21449cee763bc5528a96cb2
Improved Ximatcopy when lda==ldb.

The Ximatcopy functions create a copy of the input matrix
although they seem to work inplace. The new routines
XIMATCOPY_K_YY perform the operations inplace if the leading
dimension does not change.
23 files changed:
CONTRIBUTORS.md
common_c.h
common_d.h
common_level3.h
common_macro.h
common_param.h
common_s.h
common_z.h
interface/imatcopy.c
interface/zimatcopy.c
kernel/Makefile.L3
kernel/generic/imatcopy_cn.c [new file with mode: 0644]
kernel/generic/imatcopy_ct.c [new file with mode: 0644]
kernel/generic/imatcopy_rn.c [new file with mode: 0644]
kernel/generic/imatcopy_rt.c [new file with mode: 0644]
kernel/generic/zimatcopy_cn.c [new file with mode: 0644]
kernel/generic/zimatcopy_cnc.c [new file with mode: 0644]
kernel/generic/zimatcopy_ct.c [new file with mode: 0644]
kernel/generic/zimatcopy_ctc.c [new file with mode: 0644]
kernel/generic/zimatcopy_rn.c [new file with mode: 0644]
kernel/generic/zimatcopy_rnc.c [new file with mode: 0644]
kernel/generic/zimatcopy_rt.c [new file with mode: 0644]
kernel/generic/zimatcopy_rtc.c [new file with mode: 0644]