Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122983894
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
Wed, Jul 23, 06:25
Size
245 B
Mime Type
text/x-makefile
Expires
Fri, Jul 25, 06:25 (2 d)
Engine
blob
Format
Raw Data
Handle
27606836
Attached To
R11201 phpc-2021
Makefile
View Options
NVCC = nvcc
CXX ?= g++
CXXFLAGS += -O3 -Wall
NVCCFLAGS += -O3
LDFLAGS += $(NVCCFLAGS)
#Target Rules
vector_add: vector_add.o
$(NVCC) $^ $(LDFLAGS) -o $@
%.o:%.cu
$(NVCC) $(NVCCFLAGS) -c $< -o $@
clean:
rm -rf *.o vector_add
Event Timeline
Log In to Comment