-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix main GEMM matmul load balancing bottleneck. 0.6 -> 2 TFlops (#69)
* Higher sampling to allow proper warmup of GEMM bench * Enforce static schedule, Laser can reach 2.68 TFlops * Default to Intel OMP for MKL (3.2TFLOPs) and provides cfg for Gnu OMP and Intel TBB * Don't test the full GEMM * Reaching 2TFlops! Parallelizing 3 loops
- Loading branch information
Showing
12 changed files
with
29 additions
and
14 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
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,6 +1,6 @@ | ||
clibdir:"/opt/intel/mkl/lib/intel64" | ||
passl:"/opt/intel/mkl/lib/intel64/libmkl_intel_lp64.a" | ||
passl:"-lmkl_core" | ||
passl:"-lmkl_gnu_thread" | ||
passl:"-lgomp" | ||
passl:"-lmkl_intel_thread" | ||
passl:"-liomp5" | ||
dynlibOverride:"mkl_intel_lp64" |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
clibdir:"/opt/intel/mkl/lib/intel64" | ||
passl:"/opt/intel/mkl/lib/intel64/libmkl_intel_lp64.a" | ||
passl:"-lmkl_core" | ||
passl:"-lmkl_gnu_thread" | ||
passl:"-lgomp" | ||
dynlibOverride:"mkl_intel_lp64" |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
clibdir:"/opt/intel/mkl/lib/intel64" | ||
passl:"/opt/intel/mkl/lib/intel64/libmkl_intel_lp64.a" | ||
passl:"-lmkl_core" | ||
passl:"-lmkl_tbb_thread" | ||
passl:"-ltbb" | ||
dynlibOverride:"mkl_intel_lp64" |
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