-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Microbenchmark proofread suggestions (#68)
* STREAM suggestions * Added purpose for OSUMB * Run Rules for OSUMB updated to N/A * DGEMM typo in Example Results section * Updated Makefile for DGEMM and make command in documentation
- Loading branch information
1 parent
56a3e2a
commit 39a9e2a
Showing
4 changed files
with
21 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
|
||
CC=gcc | ||
CFLAGS=-ffast-math -mavx2 -ftree-vectorizer-verbose=3 -O3 -fopenmp -DUSE_CBLAS | ||
CFLAGS+=-ffast-math -mavx2 -ftree-vectorizer-verbose=3 -O3 -fopenmp -DUSE_CBLAS | ||
LDFLAGS=-L${OPENBLAS_ROOT}/lib -lopenblas | ||
|
||
mt-dgemm: mt-dgemm.c | ||
$(CC) $(CFLAGS) -o mt-dgemm mt-dgemm.c | ||
$(CC) $(CFLAGS) $(LDFLAGS) -o mt-dgemm mt-dgemm.c | ||
|
||
clean: | ||
rm mt-dgemm *.o | ||
|