Laurence Lundblade | 6ed3422 | 2018-12-18 09:46:23 -0800 | [diff] [blame] | 1 | /*============================================================================== |
| 2 | float_tests.h -- tests for float and conversion to/from half-precision |
| 3 | |
| 4 | Copyright (c) 2018-2019, Laurence Lundblade. All rights reserved. |
| 5 | |
| 6 | SPDX-License-Identifier: BSD-3-Clause |
| 7 | |
| 8 | See BSD-3-Clause license in README.md |
| 9 | |
| 10 | Created on 9/19/18 |
| 11 | ==============================================================================*/ |
| 12 | |
| 13 | #ifndef float_tests_h |
| 14 | #define float_tests_h |
| 15 | |
| 16 | int HalfPrecisionDecodeBasicTests(void); |
| 17 | |
| 18 | int DoubleAsSmallestTest(void); |
| 19 | |
| 20 | int HalfPrecisionAgainstRFCCodeTest(void); |
| 21 | |
| 22 | |
| 23 | #endif /* float_tests_h */ |