-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V3.75: specialized posit enhancements (#407)
* Bumping SEMVER to v3.75.1 * enabling CI for development branch v3.75 * codacy code hygiene fix * code hygiene fast posit<8,2> * properly standardizing on STL size_type throughout the Universal BLAS vector and matrix types * codacy hygiene for Chebyshev applications * codacy hygiene for arbitrary precision constants * codacy hygiene for DSP and Cryptography applications * codacy hygiene catastrophic cancellation demonstration application * WIP: implementing a fast posit<8,2>: new float_assign algorithm * found a fix to the weird floating-point NaN behavior in release builds: need to deal with special cases first * adding minpos/maxpos/minneg/maxneg free functions to cfloat * renaming reciprocate() to reciprocal() to reflect mathematical nomenclature * removed test_tag (#406) Signed-off-by: Theodore Omtzigt <theo@stillwater-sc.com> Co-authored-by: Theodore Omtzigt <theo@stillwater-sc.com> * trace variable update from reciprocate to reciprocal * fixing reciprocal regression test when exceptions can be thrown * WIP: bug fix in integer_assign of small specialized posits, and streamlined VerifyIntegerAssignment * code hygiene for posit attribute functions * codacy code hygiene * Structuring the file system to reflect the application project organization * adding mixed precision sin function learning DNN * WIP: restructuring test suites to follow the same pattern * WIP: unifying posit test suite with generic test suite API * fix regression stress level failure for binary integer arithmetic right shift * bug fix in regression test for elastic integer * bug fixes in elastic decimal regression stress test * stress level regression results * bug fix in CMakeList.txt * bug fix in regression level logic * bug fix in regression logic * simplifying the REGRESSION_LEVEL_4 to be significantly smaller to reduce running time * cleanup on isle 5, and renaming fixed-size decimal integer build target * WIP: creating posit number system checker: need to research what the right interpretation of INFINITY is for posits * posit maps INFINITE to NaR --------- Signed-off-by: Theodore Omtzigt <theo@stillwater-sc.com> Co-authored-by: James Quinlan <james@stillwater-sc.com>
- Loading branch information
1 parent
e6a530d
commit a587267
Showing
328 changed files
with
6,556 additions
and
3,081 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,3 @@ | ||
{ | ||
"image": "stillwater/universal:clang14builder" | ||
"image": "stillwater/universal:gcc11builder" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
file (GLOB SOURCES "./*.cpp") | ||
|
||
compile_all("true" "engineering" "Applications/Accuracy/Engineering" "${SOURCES}") |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,3 @@ | ||
file (GLOB SOURCES "./*.cpp") | ||
|
||
compile_all("true" "science" "Applications/Accuracy/Science" "${SOURCES}") |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
file (GLOB SOURCES "./*.cpp") | ||
|
||
compile_all("true" "cheby" "Applications/Approximation/Chebyshev" "${SOURCES}") |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 5 additions & 11 deletions
16
applications/chebyshev/chebpoly.hpp → ...ions/approximation/chebyshev/chebpoly.hpp
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
applications/chebyshev/chebtests.cpp → ...ons/approximation/chebyshev/chebtests.cpp
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
file (GLOB SOURCES "./*.cpp") | ||
|
||
compile_all("true" "approx" "Applications/Approximation/Taylor Series" "${SOURCES}") |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.