forked from intel/XBB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved unit tests to prevent g++ from skipping loop iterations and only performing the final loop iteration which messed up the timing comparisons they were intended to show. Added some "best case" and "worst case" versions to some of the tests to show fully inlined version of ref performs OK, but the worst case when all matrices are passed as parameters to a function it does not perform well. modified: .gitignore modified: unittest/InverseSxSH.cpp modified: unittest/Makefile modified: unittest/PartialPrecomputedSxSHxRxT.cpp modified: unittest/PrecomputedSxSHxRxT.cpp modified: unittest/StandardSxSHxPSxPSHxRxIPSHxIPSxTxP.cpp modified: unittest/StandardSxSHxRxT.cpp modified: unittest/TestValues.cpp modified: unittest/TestValues.h modified: unittest/ref/Matrix4x4.h
- Loading branch information
1 parent
7198de3
commit 17cc398
Showing
10 changed files
with
361 additions
and
53 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*.o | ||
*.d | ||
*~ | ||
*.*~ | ||
testXbb |
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
Oops, something went wrong.