-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* optimize modular reduction * remove MinTime * update condition * add unit test * test algorithm 2 barrett reduction * use different optimization for reduce mod based on input size * add more test and benchmark * update include * fix formatting * fix formatting * rename arg, better perf * fix windows build * fix IFMA52 unit-tests * fix debug benchmark * avoid unused error * update modulo * update test * simplify test
- Loading branch information
1 parent
a0b9029
commit b394857
Showing
16 changed files
with
545 additions
and
243 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
|
||
#pragma once | ||
|
||
#include <stdint.h> | ||
|
||
#include <cmath> | ||
|
||
#include "eltwise/eltwise-mult-mod-internal.hpp" | ||
|
Oops, something went wrong.