Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121334165
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
Thu, Jul 10, 03:01
Size
277 B
Mime Type
text/x-makefile
Expires
Sat, Jul 12, 03:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27311581
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