mirror of
https://github.com/L-yang-yang/cugenopt.git
synced 2026-04-25 12:16: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
18
benchmark/experiments/e13_multiobjective/Makefile
Normal file
18
benchmark/experiments/e13_multiobjective/Makefile
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
NVCC = nvcc
|
||||
CUDA_ARCH = -arch=sm_75
|
||||
INCLUDES = -I../../../prototype/core
|
||||
CXXFLAGS = -O3 -std=c++14
|
||||
NVCCFLAGS = $(CUDA_ARCH) $(CXXFLAGS) $(INCLUDES) --expt-relaxed-constexpr
|
||||
|
||||
TARGET = e13_multiobjective
|
||||
SRC = gpu.cu
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(SRC) bi_objective_vrp.cuh tri_objective_vrp.cuh bi_objective_knapsack.cuh
|
||||
$(NVCC) $(NVCCFLAGS) $(SRC) -o $(TARGET)
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET)
|
||||
|
||||
.PHONY: all clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue