mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 15:18:24 -05:00
14 lines
286 B
Batchfile
14 lines
286 B
Batchfile
|
@echo off
|
||
|
echo ** nasm-avx(32bit) ***
|
||
|
call test_avx
|
||
|
echo ** nasm-avx(64bit) ***
|
||
|
call test_avx 64
|
||
|
echo ** yasm-avx(32bit) ***
|
||
|
call test_avx Y
|
||
|
echo ** yasm-avx(64bit) ***
|
||
|
call test_avx Y64
|
||
|
echo ** nasm-avx512(32bit) ***
|
||
|
call test_avx512
|
||
|
echo ** nasm-avx512(64bit) ***
|
||
|
call test_avx512 64
|