Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bring version 0.1.1 into main #12

Merged
merged 78 commits into from
Mar 9, 2024
Merged

Bring version 0.1.1 into main #12

merged 78 commits into from
Mar 9, 2024

Conversation

Rinzii
Copy link
Owner

@Rinzii Rinzii commented Mar 9, 2024

Bring in work already done for implementation of v0.2.0 and assign it as v0.1.1 as a pre-release version.

Update includes the following:

  • Completion of log
  • Completion of log2
  • Misc additions and updates
  • Increase in unit tests for all functions
  • Update version number from v0.1.0 to v0.1.1
  • Multiple improvements of README

@Rinzii Rinzii added this to the Road to v1.0.0 milestone Mar 9, 2024
@Rinzii Rinzii self-assigned this Mar 9, 2024
@Rinzii Rinzii merged commit fa136d5 into main Mar 9, 2024
6 checks passed
Rinzii added a commit that referenced this pull request Mar 9, 2024
* Add support for builtin detection

* Update comments to be more eye catching

* Add clang-cl and apple clang support

* Fix bug with MSVC where not checking for nan

* Remove msvc specific code in favor of generic approach

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Bring everything in

* Remove artifacts that mistakenly got pushed to main

* Implement isgreater

* Implement isgreaterequal

* Implement isless

* Implement islessequal

* Implement islessgreater

* Implement isnormal

* Implement isunordered

* Add test cases for all new compare functions

* Add boilerplate code for future unit tests

* Update progress

* A lot of work done so far on log

* log now far more efficient and accurate

* Update readme progress

* Continue work on log for double

* remove unnecessary include

* remove msvc section of unlikely

* improve variable names

* remove old log impl

* Cleanup double implementation of log

* cleanup of log details and add more comments.

* Finalize work on log function

* Update current progress

* Fix bug with ±0 in log

* Update test cases to cover all major edge cases

* Move to correct folder

* Add headers for log and log2

* Remove dependency on Threads

* Initial addition of Contribution Guide

* Cleanup README and add extra information

* Update project version to v0.1.1

* Add top12 bits function for upcoming work

* Finalize work with log function

* Initial working revision of log2

* Push current work. Need to revise log2 to resolve bugs later.

* Initial implementation of lerp

* Fix scope bug

* remove the direct use of cmath.

* Update include to use cfloat instead of float.h

* Cleanup macros and fix minor bugs

* Fix bug where we were improperly assigning a correct value to the wrong variable

* Update docs to mention not accounting for big-endian

* Add comment to mention we are mirroring impl from cmath

* Remove MSVC fallback that was inconsistent with every other impl

* Add additional helpers for future work

* Add test for static_assert support and some additional tests

* Finalize implementation of log2

* Remove static_assert for now

* Update README.md
Rinzii added a commit that referenced this pull request Mar 9, 2024
* Add support for builtin detection

* Update comments to be more eye catching

* Add clang-cl and apple clang support

* Fix bug with MSVC where not checking for nan

* Remove msvc specific code in favor of generic approach

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Bring everything in

* Remove artifacts that mistakenly got pushed to main

* Implement isgreater

* Implement isgreaterequal

* Implement isless

* Implement islessequal

* Implement islessgreater

* Implement isnormal

* Implement isunordered

* Add test cases for all new compare functions

* Add boilerplate code for future unit tests

* Update progress

* A lot of work done so far on log

* log now far more efficient and accurate

* Update readme progress

* Continue work on log for double

* remove unnecessary include

* remove msvc section of unlikely

* improve variable names

* remove old log impl

* Cleanup double implementation of log

* cleanup of log details and add more comments.

* Finalize work on log function

* Update current progress

* Fix bug with ±0 in log

* Update test cases to cover all major edge cases

* Move to correct folder

* Add headers for log and log2

* Remove dependency on Threads

* Initial addition of Contribution Guide

* Cleanup README and add extra information

* Update project version to v0.1.1

* Add top12 bits function for upcoming work

* Finalize work with log function

* Initial working revision of log2

* Push current work. Need to revise log2 to resolve bugs later.

* Initial implementation of lerp

* Fix scope bug

* remove the direct use of cmath.

* Update include to use cfloat instead of float.h

* Cleanup macros and fix minor bugs

* Fix bug where we were improperly assigning a correct value to the wrong variable

* Update docs to mention not accounting for big-endian

* Add comment to mention we are mirroring impl from cmath

* Remove MSVC fallback that was inconsistent with every other impl

* Add additional helpers for future work

* Add test for static_assert support and some additional tests

* Finalize implementation of log2

* Remove static_assert for now

* Update README.md
Rinzii added a commit that referenced this pull request Mar 12, 2024
* Remove not_null (not used anymore)

* Bring version 0.1.1 into main (#12) (#13)

* Add support for builtin detection

* Update comments to be more eye catching

* Add clang-cl and apple clang support

* Fix bug with MSVC where not checking for nan

* Remove msvc specific code in favor of generic approach

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Bring everything in

* Remove artifacts that mistakenly got pushed to main

* Implement isgreater

* Implement isgreaterequal

* Implement isless

* Implement islessequal

* Implement islessgreater

* Implement isnormal

* Implement isunordered

* Add test cases for all new compare functions

* Add boilerplate code for future unit tests

* Update progress

* A lot of work done so far on log

* log now far more efficient and accurate

* Update readme progress

* Continue work on log for double

* remove unnecessary include

* remove msvc section of unlikely

* improve variable names

* remove old log impl

* Cleanup double implementation of log

* cleanup of log details and add more comments.

* Finalize work on log function

* Update current progress

* Fix bug with ±0 in log

* Update test cases to cover all major edge cases

* Move to correct folder

* Add headers for log and log2

* Remove dependency on Threads

* Initial addition of Contribution Guide

* Cleanup README and add extra information

* Update project version to v0.1.1

* Add top12 bits function for upcoming work

* Finalize work with log function

* Initial working revision of log2

* Push current work. Need to revise log2 to resolve bugs later.

* Initial implementation of lerp

* Fix scope bug

* remove the direct use of cmath.

* Update include to use cfloat instead of float.h

* Cleanup macros and fix minor bugs

* Fix bug where we were improperly assigning a correct value to the wrong variable

* Update docs to mention not accounting for big-endian

* Add comment to mention we are mirroring impl from cmath

* Remove MSVC fallback that was inconsistent with every other impl

* Add additional helpers for future work

* Add test for static_assert support and some additional tests

* Finalize implementation of log2

* Remove static_assert for now

* Update README.md

* Bring version 0.1.1 into main (#12) (#14)

* Add support for builtin detection

* Update comments to be more eye catching

* Add clang-cl and apple clang support

* Fix bug with MSVC where not checking for nan

* Remove msvc specific code in favor of generic approach

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Bring everything in

* Remove artifacts that mistakenly got pushed to main

* Implement isgreater

* Implement isgreaterequal

* Implement isless

* Implement islessequal

* Implement islessgreater

* Implement isnormal

* Implement isunordered

* Add test cases for all new compare functions

* Add boilerplate code for future unit tests

* Update progress

* A lot of work done so far on log

* log now far more efficient and accurate

* Update readme progress

* Continue work on log for double

* remove unnecessary include

* remove msvc section of unlikely

* improve variable names

* remove old log impl

* Cleanup double implementation of log

* cleanup of log details and add more comments.

* Finalize work on log function

* Update current progress

* Fix bug with ±0 in log

* Update test cases to cover all major edge cases

* Move to correct folder

* Add headers for log and log2

* Remove dependency on Threads

* Initial addition of Contribution Guide

* Cleanup README and add extra information

* Update project version to v0.1.1

* Add top12 bits function for upcoming work

* Finalize work with log function

* Initial working revision of log2

* Push current work. Need to revise log2 to resolve bugs later.

* Initial implementation of lerp

* Fix scope bug

* remove the direct use of cmath.

* Update include to use cfloat instead of float.h

* Cleanup macros and fix minor bugs

* Fix bug where we were improperly assigning a correct value to the wrong variable

* Update docs to mention not accounting for big-endian

* Add comment to mention we are mirroring impl from cmath

* Remove MSVC fallback that was inconsistent with every other impl

* Add additional helpers for future work

* Add test for static_assert support and some additional tests

* Finalize implementation of log2

* Remove static_assert for now

* Update README.md

* Update bullet points for features of library

* Remove unused helpers

* add float_t and double_t to monolithic header

* Cleanup and minor adjustments

* Update sources to remove deleted headers

* Fix ambiguity bug between float and integer

* Fix ambiguity issues

* Implement basic benchmarking for log and log2

* Update all test suite to use the monolithic header instead of function specific header.

* Setup some basic benchmark suites for log and abs

* Minor cleanup

* Add first class support for Intel DPC++

* Fix small bug with compiler identification

* Add first class support to Nvidia HPC C++

* Having internal issues with detection of NVidia HPC C++. Removing specific section for now

* Add support for Nvidia HPC and remove use of enums.

* Fix minor bug with NVHPC

* Re-enable static_assert for fpclassify and verify it works with CI

* Re-enable static_assert for fpclassify and verify it works with CI

* Add extra comment to static_assert
Rinzii added a commit that referenced this pull request Mar 14, 2024
* Remove not_null (not used anymore)

* Bring version 0.1.1 into main (#12) (#13)

* Add support for builtin detection

* Update comments to be more eye catching

* Add clang-cl and apple clang support

* Fix bug with MSVC where not checking for nan

* Remove msvc specific code in favor of generic approach

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Bring everything in

* Remove artifacts that mistakenly got pushed to main

* Implement isgreater

* Implement isgreaterequal

* Implement isless

* Implement islessequal

* Implement islessgreater

* Implement isnormal

* Implement isunordered

* Add test cases for all new compare functions

* Add boilerplate code for future unit tests

* Update progress

* A lot of work done so far on log

* log now far more efficient and accurate

* Update readme progress

* Continue work on log for double

* remove unnecessary include

* remove msvc section of unlikely

* improve variable names

* remove old log impl

* Cleanup double implementation of log

* cleanup of log details and add more comments.

* Finalize work on log function

* Update current progress

* Fix bug with ±0 in log

* Update test cases to cover all major edge cases

* Move to correct folder

* Add headers for log and log2

* Remove dependency on Threads

* Initial addition of Contribution Guide

* Cleanup README and add extra information

* Update project version to v0.1.1

* Add top12 bits function for upcoming work

* Finalize work with log function

* Initial working revision of log2

* Push current work. Need to revise log2 to resolve bugs later.

* Initial implementation of lerp

* Fix scope bug

* remove the direct use of cmath.

* Update include to use cfloat instead of float.h

* Cleanup macros and fix minor bugs

* Fix bug where we were improperly assigning a correct value to the wrong variable

* Update docs to mention not accounting for big-endian

* Add comment to mention we are mirroring impl from cmath

* Remove MSVC fallback that was inconsistent with every other impl

* Add additional helpers for future work

* Add test for static_assert support and some additional tests

* Finalize implementation of log2

* Remove static_assert for now

* Update README.md

* Bring version 0.1.1 into main (#12) (#14)

* Add support for builtin detection

* Update comments to be more eye catching

* Add clang-cl and apple clang support

* Fix bug with MSVC where not checking for nan

* Remove msvc specific code in favor of generic approach

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Prepare for 0.1.0 release.

* Add doxygen docs

* Finalize min/max

* Add todo for later work on remquo

* Cleanup main for 0.1.0 release

* Bring standard back to C++17

* Minor cleanup to cmake list

* Prep files for v0.1.0 release

* Bring everything in

* Remove artifacts that mistakenly got pushed to main

* Implement isgreater

* Implement isgreaterequal

* Implement isless

* Implement islessequal

* Implement islessgreater

* Implement isnormal

* Implement isunordered

* Add test cases for all new compare functions

* Add boilerplate code for future unit tests

* Update progress

* A lot of work done so far on log

* log now far more efficient and accurate

* Update readme progress

* Continue work on log for double

* remove unnecessary include

* remove msvc section of unlikely

* improve variable names

* remove old log impl

* Cleanup double implementation of log

* cleanup of log details and add more comments.

* Finalize work on log function

* Update current progress

* Fix bug with ±0 in log

* Update test cases to cover all major edge cases

* Move to correct folder

* Add headers for log and log2

* Remove dependency on Threads

* Initial addition of Contribution Guide

* Cleanup README and add extra information

* Update project version to v0.1.1

* Add top12 bits function for upcoming work

* Finalize work with log function

* Initial working revision of log2

* Push current work. Need to revise log2 to resolve bugs later.

* Initial implementation of lerp

* Fix scope bug

* remove the direct use of cmath.

* Update include to use cfloat instead of float.h

* Cleanup macros and fix minor bugs

* Fix bug where we were improperly assigning a correct value to the wrong variable

* Update docs to mention not accounting for big-endian

* Add comment to mention we are mirroring impl from cmath

* Remove MSVC fallback that was inconsistent with every other impl

* Add additional helpers for future work

* Add test for static_assert support and some additional tests

* Finalize implementation of log2

* Remove static_assert for now

* Update README.md

* Update bullet points for features of library

* Remove unused helpers

* add float_t and double_t to monolithic header

* Cleanup and minor adjustments

* Update sources to remove deleted headers

* Fix ambiguity bug between float and integer

* Fix ambiguity issues

* Implement basic benchmarking for log and log2

* Update all test suite to use the monolithic header instead of function specific header.

* Setup some basic benchmark suites for log and abs

* Minor cleanup

* Add first class support for Intel DPC++

* Fix small bug with compiler identification

* Add first class support to Nvidia HPC C++

* Having internal issues with detection of NVidia HPC C++. Removing specific section for now

* Add support for Nvidia HPC and remove use of enums.

* Fix minor bug with NVHPC

* Re-enable static_assert for fpclassify and verify it works with CI

* Re-enable static_assert for fpclassify and verify it works with CI

* Add extra comment to static_assert

* rename the exponent details folder to impl

* Cleanup the example mains

* Finish implementation of remquo

* Cleanup remquo test cases

* Update remquo to better handle specific edge cases

* Remove unused includes

* Temporarily remove problematic test cases.

* Layout some future functions for long double

* Implement copysign

* remove deleted file from headers

* Cleanup code and documentation

* Add last additional functions and documentation

* Cleanup implementation details

* Consolidate code and reduce code fragmentation along with minor refinement of documentation

* Fix missing SetComplexitN

* Minor cleanup

* Update README to reflect updated functions

* Update version number to 0.1.2 for upcoming hot patch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant