Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94113164
Makefile_old
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, Dec 4, 00:41
Size
597 B
Mime Type
text/x-makefile
Expires
Fri, Dec 6, 00:41 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22700631
Attached To
R10834 Project_multiproc
Makefile_old
View Options
NVCC = nvcc -arch=sm_70
CFLAGS = -Wno-deprecated-gpu-targets -c -O3
LFLAGS = -Wno-deprecated-gpu-targets -lcudart -lcuda
all: assignment4.o implementation.o
$(NVCC) $(LFLAGS) assignment4.o implementation.o -o assignment4
trivial: implementation_trivial.o
$(NVCC) $(LFLAGS) assignment4.o implementation_trivial.o -o assignment4
assignment4.o: assignment4.cu utility.h implementation.o
$(NVCC) $(CFLAGS) $< -o $@
implementation.o: implementation.cu
$(NVCC) $(CFLAGS) $< -o $@
implementation_trivial.o: implementation_trivial.cu
$(NVCC) $(CFLAGS) $< -o $@
clean:
rm -f *.o assignment4
Event Timeline
Log In to Comment