mirror of
https://github.com/RRZE-HPC/ibench.git
synced 2026-01-11 23:27:06 +01:00
11 lines
402 B
Makefile
11 lines
402 B
Makefile
CC = gcc
|
|
AS = gcc
|
|
CFLAGS = -O3 -march=armv9.2-a+sve
|
|
# -msve-vector-bits=512 -march=armv8.2-a+sve
|
|
ASFLAGS = -O3 -march=armv9.2-a+sve
|
|
LFLAGS = -shared
|
|
|
|
KERNELS += $(patsubst $(SRC_DIR)/%.S, %.so, $(wildcard $(SRC_DIR)/BASE-ARM64/*.S))
|
|
KERNELS += $(patsubst $(SRC_DIR)/%.S, %.so, $(wildcard $(SRC_DIR)/NEON/*.S))
|
|
KERNELS += $(patsubst $(SRC_DIR)/%.S, %.so, $(wildcard $(SRC_DIR)/SVE/*.S))
|