Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93784058
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
Sun, Dec 1, 11:44
Size
597 B
Mime Type
text/x-makefile
Expires
Tue, Dec 3, 11:44 (2 d)
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