Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Henning Fehrmann
NVidia_AMD_Bench
Commits
46588f08
Commit
46588f08
authored
Jan 28, 2021
by
Henning Fehrmann
Committed by
Henning Fehrmann
Jan 28, 2021
Browse files
obsolete makefiles
parent
0626ce84
Changes
2
Hide whitespace changes
Inline
Side-by-side
Makefile_AMD
deleted
100644 → 0
View file @
0626ce84
CC = /usr/bin/gcc
CC = /opt/rocm/hip/bin/hipcc
OBJ = rocmblas_AMD.o
LDFLAGS = -L/opt/rocm/lib -lhipblas -lrocblas -fopenmp
CFLAGS = -g -Wall -O3 -fopenmp -I/opt/rocm/include -I/opt/rocm/hip/include
all: ${OBJ}
${CC} -o rocmblas ${LDFLAGS} ${OBJ}
%.o: %.c ${HEADER}
${CC} ${CFLAGS} -c $<
clean:
rm *.o
Makefile_NVidia
deleted
100644 → 0
View file @
0626ce84
CC = nvcc
OBJ = cuda_NVidia.o
LDFLAGS = -lcublas -lm -lgomp
INCLUDE= -I/usr/lib/x86_64-linux-gnu/openmpi/include/
CFLAGS = --compile -O3 -Xcompiler -fopenmp
CFLAGS = ${INCLUDE} --compile -O3 -pg -Xcompiler -fopenmp
CUDAFLAGS = --Werror cross-execution-space-call --Wno-deprecated-gpu-targets
all: ${OBJ}
${CC} -o cudablas ${OBJ} ${LDFLAGS} ${CUDAFLAGS}
%.o: %.c ${HEADER}
${CC} ${CFLAGS} -c $<
clean:
rm *.o
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment