Instructions
- Read the issue description below.
- Read the issue comment which follows the description.
- Search for a package in
math/base/special having relative tolerance tests which needs updating according to the description below.
- Follow any additional guidance specified in this issue.
Description
This RFC proposes migrating from Relative Tolerance testing to ULP Difference testing for math/base/special functions.
In short, this RFC seeks to refactor testing from, for example
var abs = require( '@stdlib/math/base/special/abs' );
var delta = abs( y - expected[ i ] );
var tol = EPS * abs( expected[ i ] );
t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y );
to
var isAlmostSameValue = require( '@stdlib/assert/is-almost-same-value' );
t.strictEqual( isAlmostSameValue( y, expected[ i ], 1 ), true, 'returns expected value' );
The migration is demonstrated in commit 121f2c0
In particular, notice three things:
- We add the import
@stdlib/assert/is-almost-same-value. See the documentation for @stdlib/assert/is-almost-same-value for supported parameters.
- We remove
var delta = abs( y - expected[ i ] ); and var tol = EPS * abs( expected[ i ] );
- We replace
t.ok( ... ); with t.strictEqual( isAlmostSameValue( v, expected[ i ], 1 ), true, 'returns expected value' ); with the returned output, expected value and the minimum required ulp value. Also, make sure the message is 'returns expected value' for every test case.
By performing this refactoring, we facilitate
- Measuring error in units of the representable gap at that magnitude, which is the natural accuracy unit for floating-point.
- Enables a uniform accuracy budget
- Easier to test both real and complex functions, across single-precision and double-precision, with consistent and trustworthy rules.
Note: In certain functions, we may encounter different return values in the JavaScript and C implementation for the same implementation. In that case, refer to this commit 69e1068. This was discussed here in detail FAQ.
Steps
Given the relatively widespread practice of using relative tolerance in testing, this RFC aims to be an open call for any contributor wanting to contribute to the project to do the following:
- Study the changes made in commit 121f2c0, as this commit contains the sorts of changes that we are looking for.
- Ensure you have setup your local development environment by following the contributing guide, including
make install-node-modules and make init.
- Study the documentation for
@stdlib/assert/is-almost-same-value.
- Find a package containing relative tolerance test cases.
- Update the test cases for that package, and only that package, to migrate to use ULP difference testing. Make sure that you put the minimum required ULP value possible. Tests can be found in the
test/ folder of a package (if it exists).
- Run tests locally using the command
make test TESTS_FILTER=".*/math/base/special/<package-name>/.*". For example, make test TESTS_FILTER=".*/math/base/special/hyp2f1/.*".
- Verify that the updated ULP values pass all the test cases.
- Commit your changes.
- Submit a PR updating the test for that package (and only that package).
- For the PR title, use the following template "test: migrate
<package-name> to ULP-based testing" where <package_name> is the name of the package you updated (e.g., math/base/special/hyp2f1).
- In the PR body/description, use the phrase "Resolves a part of ", and not "Resolves " or "Closes ", this issue, as this is a tracking issue and your PR only addresses one package of many needing updating.
Related Issues
None
Questions
None.
Other
- If you are interested in working on this RFC, for each pull request, please only update the tests for a single package.
- As mentioned above, please do NOT make extraneous changes to test cases. We are not interested in changing tests wholesale. Nor are we interested in new "creative" changes. We are only interested in migrating from relative tolerance testing to ULP diff based testing Failure to match the behavior of the existing tests and to respect this guidance will result in your PRs being automatically closed without review.
- As this is a "Good First Issue", you are strongly encouraged to avoid using AI when authoring your contribution. One of the primary intents of Good First Issues is to help introduce you to stdlib, its development environment, and the contribution process, as documented in the contributing guide. Most new contributors are unfamiliar with stdlib and its conventions, and thus fail to appropriately use LLMs and AI when authoring contributions, most often generating AI slop and leading to wasted time. Don't be one of those people. :) Take the time to manually author your first several PRs, and, once you are intimately familiar with project conventions, you can consider leveraging AI to augment your dev tasks.
Checklist
Instructions
math/base/specialhaving relative tolerance tests which needs updating according to the description below.Description
This RFC proposes migrating from Relative Tolerance testing to ULP Difference testing for
math/base/specialfunctions.In short, this RFC seeks to refactor testing from, for example
to
The migration is demonstrated in commit 121f2c0
In particular, notice three things:
@stdlib/assert/is-almost-same-value. See the documentation for@stdlib/assert/is-almost-same-valuefor supported parameters.var delta = abs( y - expected[ i ] );andvar tol = EPS * abs( expected[ i ] );t.ok( ... );witht.strictEqual( isAlmostSameValue( v, expected[ i ], 1 ), true, 'returns expected value' );with the returned output, expected value and the minimum required ulp value. Also, make sure the message is'returns expected value'for every test case.By performing this refactoring, we facilitate
Note: In certain functions, we may encounter different return values in the JavaScript and C implementation for the same implementation. In that case, refer to this commit 69e1068. This was discussed here in detail FAQ.
Steps
Given the relatively widespread practice of using relative tolerance in testing, this RFC aims to be an open call for any contributor wanting to contribute to the project to do the following:
make install-node-modulesandmake init.@stdlib/assert/is-almost-same-value.test/folder of a package (if it exists).make test TESTS_FILTER=".*/math/base/special/<package-name>/.*". For example,make test TESTS_FILTER=".*/math/base/special/hyp2f1/.*".<package-name>to ULP-based testing" where<package_name>is the name of the package you updated (e.g.,math/base/special/hyp2f1).Related Issues
None
Questions
None.
Other
Checklist
RFC:.