2018-09-24 20:43:31 +03:00
|
|
|
#define ALIGN .align
|
|
|
|
|
.intel_syntax noprefix
|
|
|
|
|
.section .text
|
|
|
|
|
.global cnv2_mainloop_ivybridge_asm
|
|
|
|
|
.global cnv2_mainloop_ryzen_asm
|
2018-10-22 23:08:29 +07:00
|
|
|
.global cnv2_mainloop_bulldozer_asm
|
2018-09-25 09:25:47 +03:00
|
|
|
.global cnv2_double_mainloop_sandybridge_asm
|
2018-09-24 20:43:31 +03:00
|
|
|
|
|
|
|
|
ALIGN 16
|
|
|
|
|
cnv2_mainloop_ivybridge_asm:
|
2019-01-13 23:00:41 +07:00
|
|
|
#include "../cn2/cnv2_main_loop_ivybridge.inc"
|
2018-09-24 20:43:31 +03:00
|
|
|
ret 0
|
|
|
|
|
|
|
|
|
|
ALIGN 16
|
|
|
|
|
cnv2_mainloop_ryzen_asm:
|
2019-01-13 23:00:41 +07:00
|
|
|
#include "../cn2/cnv2_main_loop_ryzen.inc"
|
2018-09-24 20:43:31 +03:00
|
|
|
ret 0
|
2018-09-25 09:25:47 +03:00
|
|
|
|
2018-10-22 23:08:29 +07:00
|
|
|
ALIGN 16
|
|
|
|
|
cnv2_mainloop_bulldozer_asm:
|
2019-01-13 23:00:41 +07:00
|
|
|
#include "../cn2/cnv2_main_loop_bulldozer.inc"
|
2018-10-22 23:08:29 +07:00
|
|
|
ret 0
|
|
|
|
|
|
2018-09-25 09:25:47 +03:00
|
|
|
ALIGN 16
|
|
|
|
|
cnv2_double_mainloop_sandybridge_asm:
|
2019-01-13 23:00:41 +07:00
|
|
|
#include "../cn2/cnv2_double_main_loop_sandybridge.inc"
|
2018-09-25 09:25:47 +03:00
|
|
|
ret 0
|