| /*============================================================================== |
| float_tests.h -- tests for float and conversion to/from half-precision |
| |
| Copyright (c) 2018-2019, Laurence Lundblade. All rights reserved. |
| |
| SPDX-License-Identifier: BSD-3-Clause |
| |
| See BSD-3-Clause license in README.md |
| |
| Created on 9/19/18 |
| ==============================================================================*/ |
| |
| #ifndef float_tests_h |
| #define float_tests_h |
| |
| int HalfPrecisionDecodeBasicTests(void); |
| |
| int DoubleAsSmallestTest(void); |
| |
| int HalfPrecisionAgainstRFCCodeTest(void); |
| |
| |
| #endif /* float_tests_h */ |