Replace legacy ABEGPU stack with ABE_CUDA backend

This commit is contained in:
2026-04-12 21:19:14 +08:00
parent aaf7bf0a26
commit 86a683de26
13 changed files with 2707 additions and 12996 deletions

View File

@@ -63,3 +63,7 @@ Cu = nvcc
CUDA_LIB_PATH = -L/usr/lib/cuda/lib64 -I/usr/include -I/usr/lib/cuda/include
#CUDA_APP_FLAGS = -c -g -O3 --ptxas-options=-v -arch compute_13 -code compute_13,sm_13 -Dfortran3 -Dnewc
CUDA_APP_FLAGS = -c -g -O3 --ptxas-options=-v -Dfortran3 -Dnewc
CUDA_ARCH ?= sm_80
ifneq ($(strip $(CUDA_ARCH)),)
CUDA_APP_FLAGS += -arch=$(CUDA_ARCH)
endif