blob: 1367db5cedf03d2c7af1b741a6e48329790e1676 [file] [log] [blame]
Laurence Lundblade68a13352018-09-23 02:19:54 -07001/*==============================================================================
Laurence Lundblade781fd822018-10-01 09:37:52 -07002 half_precision_test.h -- tests for converstion to/from half-precision
3
Laurence Lundblade68a13352018-09-23 02:19:54 -07004 Copyright 2018 Laurence Lundblade
5
6 Permission is hereby granted, free of charge, to any person obtaining
7 a copy of this software and associated documentation files (the
8 "Software"), to deal in the Software without restriction, including
9 without limitation the rights to use, copy, modify, merge, publish,
10 distribute, sublicense, and/or sell copies of the Software, and to
11 permit persons to whom the Software is furnished to do so, subject to
12 the following conditions:
13
14 The above copyright notice and this permission notice shall be included
15 in all copies or substantial portions of the Software.
16
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
21 BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
22 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 SOFTWARE.
25
26 (This is the MIT license)
Laurence Lundbladed711fb22018-09-26 14:35:22 -070027 ==============================================================================*/
Laurence Lundblade68a13352018-09-23 02:19:54 -070028// Created by Laurence Lundblade on 9/19/18.
Laurence Lundblade781fd822018-10-01 09:37:52 -070029
Laurence Lundblade68a13352018-09-23 02:19:54 -070030
31#ifndef half_precision_test_h
32#define half_precision_test_h
33
34int half_precision_encode_basic(void);
35
36int half_precision_decode_basic(void);
37
Laurence Lundbladed711fb22018-09-26 14:35:22 -070038int half_precision_to_float_transitive_test(void);
39
40int double_as_smallest_encode_basic(void);
41
42int half_precision_to_float_vs_rfc_test(void);
43
Laurence Lundblade68a13352018-09-23 02:19:54 -070044
45#endif /* half_precision_test_h */