mirror of
https://github.com/L-yang-yang/cugenopt.git
synced 2026-04-26 12:26:21 +02:00
Initial commit: cuGenOpt GPU optimization solver
This commit is contained in:
commit
fc5a0ff4af
117 changed files with 25545 additions and 0 deletions
13
benchmark/experiments/test_lazy_norm/Makefile
Normal file
13
benchmark/experiments/test_lazy_norm/Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
NVCC = /usr/local/cuda-12.8/bin/nvcc
|
||||
CUDA_ARCH = -arch=sm_70
|
||||
INCLUDES = -I../../../prototype/core
|
||||
CXXFLAGS = -O3 -std=c++14
|
||||
NVCCFLAGS = $(CUDA_ARCH) $(CXXFLAGS) $(INCLUDES) --expt-relaxed-constexpr
|
||||
|
||||
test_lazy_norm: test_lazy_norm.cu
|
||||
$(NVCC) $(NVCCFLAGS) -o test_lazy_norm test_lazy_norm.cu
|
||||
|
||||
clean:
|
||||
rm -f test_lazy_norm
|
||||
|
||||
.PHONY: clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue