Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122663615
Makefile
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jul 21, 10:45
Size
277 B
Mime Type
text/x-makefile
Expires
Wed, Jul 23, 10:45 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27537578
Attached To
R11201 phpc-2021
Makefile
View Options
NVCC = nvcc
CXX ?= g++
CXXFLAGS += -O3 -Wall
NVCCFLAGS += -O3
LDFLAGS += $(NVCCFLAGS)
#Target Rules
matrixmul: matrix_mul.o matrix_mul_cpu.o matrix_mul_gpu.o
$(NVCC) $^ $(LDFLAGS) -o $@
%.o:%.cu
$(NVCC) $(NVCCFLAGS) -c $< -o $@
clean:
rm -rf *.o matrixmul
Event Timeline
Log In to Comment