On Fri Sep 8 15:43:25 2023 +0000, Nikolay Sivov wrote:
How do you suggest I verify that?
The trick I know takes advantage of function overloading: ``` float test(float x) { return 1.0; } float test(half x) { return 2.0; } float main() { return test(determinant(x)); } ```