Skip to content

Add optimized dsdot to all other x86_64 kernels that use sdot.c #1369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Nov 28, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions kernel/x86_64/KERNEL.BULLDOZER
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CAXPYKERNEL = caxpy.c
ZAXPYKERNEL = zaxpy.c

SDOTKERNEL = sdot.c
DSDOTKERNEL = sdot.c
CDOTKERNEL = cdot.c
ZDOTKERNEL = zdot.c

Expand Down
1 change: 1 addition & 0 deletions kernel/x86_64/KERNEL.EXCAVATOR
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ CAXPYKERNEL = caxpy.c
ZAXPYKERNEL = zaxpy.c

SDOTKERNEL = sdot.c
DSDOTKERNEL = sdot.c
DDOTKERNEL = ddot.c
CDOTKERNEL = cdot.c
ZDOTKERNEL = zdot.c
Expand Down
1 change: 1 addition & 0 deletions kernel/x86_64/KERNEL.NEHALEM
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ SAXPYKERNEL = saxpy.c
DAXPYKERNEL = daxpy.c

SDOTKERNEL = sdot.c
DSDOTKERNEL = sdot.c
DDOTKERNEL = ddot.c

DSYMV_U_KERNEL = dsymv_U.c
Expand Down
1 change: 1 addition & 0 deletions kernel/x86_64/KERNEL.PILEDRIVER
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ DGEMVNKERNEL = dgemv_n_bulldozer.S
DGEMVTKERNEL = dgemv_t_bulldozer.S

SDOTKERNEL = sdot.c
DSDOTKERNEL = sdot.c
DDOTKERNEL = ddot.c
CDOTKERNEL = cdot.c
ZDOTKERNEL = zdot.c
Expand Down
1 change: 1 addition & 0 deletions kernel/x86_64/KERNEL.SANDYBRIDGE
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ SGEMVTKERNEL = sgemv_t_4.c
ZGEMVNKERNEL = zgemv_n_4.c

SDOTKERNEL = sdot.c
DSDOTKERNEL = sdot.c
DDOTKERNEL = ddot.c
CDOTKERNEL = cdot.c
ZDOTKERNEL = zdot.c
Expand Down
1 change: 1 addition & 0 deletions kernel/x86_64/KERNEL.STEAMROLLER
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ CAXPYKERNEL = caxpy.c
ZAXPYKERNEL = zaxpy.c

SDOTKERNEL = sdot.c
DSDOTKERNEL = sdot.c
DDOTKERNEL = ddot.c
CDOTKERNEL = cdot.c
ZDOTKERNEL = zdot.c
Expand Down
1 change: 1 addition & 0 deletions kernel/x86_64/KERNEL.ZEN
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ DSYMV_L_KERNEL = dsymv_L.c
DSYMV_U_KERNEL = dsymv_U.c

SDOTKERNEL = sdot.c
DSDOTKERNEL = sdot.c
DDOTKERNEL = ddot.c
CDOTKERNEL = cdot.c
ZDOTKERNEL = zdot.c
Expand Down