File tree Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Original file line number Diff line number Diff line change
1
+
2
+ 0.3: Jun 10, 2024
3
+ - Use python ints throughout, adding float64 to test
4
+ - Simplify round, fix directed rounding
5
+ - Rename "ival" to "code" in FloatValue
6
+ - Shorten format names from "format_info_*" to "*"
7
+
8
+
9
+ 0.2: May 21, 2024
10
+ - Add MX Formats
11
+ - Improved CI
12
+ - Add value table pretty-printing
13
+
14
+ 0.1: May 2, 2024
15
+ - First released version
16
+
17
+ Copyright (c) 2024 Graphcore Ltd. All rights reserved.
Original file line number Diff line number Diff line change 7
7
project = "GFloat"
8
8
copyright = "2024, Graphcore Ltd"
9
9
author = "Andrew Fitzgibbon"
10
- release = "0.2.1 " # Set version in package.sh
11
- version = "0.2.1 " # Set version in package.sh
10
+ release = "0.3 " # Set version in package.sh
11
+ version = "0.3 " # Set version in package.sh
12
12
13
13
# -- General configuration
14
14
Original file line number Diff line number Diff line change @@ -8,8 +8,9 @@ Defined Formats
8
8
IEEE 754 Formats
9
9
----------------
10
10
11
- .. autodata :: format_info_binary32
12
11
.. autodata :: format_info_binary16
12
+ .. autodata :: format_info_binary32
13
+ .. autodata :: format_info_binary64
13
14
14
15
BFloat16
15
16
----------------
Original file line number Diff line number Diff line change 5
5
set -o errexit
6
6
7
7
# This is the master location at which to change version number
8
- VERSION=" 0.2.1 "
8
+ VERSION=" 0.3 "
9
9
10
10
# Run the script to change the version elsewhere
11
11
perl -pi -e ' s/^(release|version) = "([\d.]+)"/$1 = "' $VERSION ' "/' docs/source/conf.py
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ package-dir = {"" = "src"}
10
10
11
11
[project ]
12
12
name = " gfloat"
13
- version = " 0.2.1 " # Set version in package.sh
13
+ version = " 0.3 " # Set version in package.sh
14
14
authors = [
15
15
{
name =
" Andrew Fitzgibbon" ,
email =
" [email protected] " },
16
16
]
You can’t perform that action at this time.
0 commit comments