You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests (src/tests.cpp and included modules) consist of some tests whose runtime is independent of the TEST_ITERS variable, and some which are. The ones that are independent take a significant amount of time (compared to the other ones, at a normal TEST_ITERS level). The ones that do depend on it do so in a rather inconsistent way.
So to improve upon that:
Turn constant-time tests into TEST_ITERS-proportional ones were possible.
Perhaps disable some very slow constant-time ones entirely at very low TEST_ITERS levels.
Run benchmarks on each of the proportional ones, and adjust to make sure they all get a somewhat representative amount of runtime in typical configurations.
The text was updated successfully, but these errors were encountered:
The tests (src/tests.cpp and included modules) consist of some tests whose runtime is independent of the TEST_ITERS variable, and some which are. The ones that are independent take a significant amount of time (compared to the other ones, at a normal TEST_ITERS level). The ones that do depend on it do so in a rather inconsistent way.
So to improve upon that:
The text was updated successfully, but these errors were encountered: