Skip to content

Commit 5e409f8

Browse files
authored
Merge pull request #28 from graphcore-research/v0.3
Version 0.3
2 parents bca716b + 8f11ca6 commit 5e409f8

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
lines changed

ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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.

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
project = "GFloat"
88
copyright = "2024, Graphcore Ltd"
99
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
1212

1313
# -- General configuration
1414

docs/source/formats.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ Defined Formats
88
IEEE 754 Formats
99
----------------
1010

11-
.. autodata:: format_info_binary32
1211
.. autodata:: format_info_binary16
12+
.. autodata:: format_info_binary32
13+
.. autodata:: format_info_binary64
1314

1415
BFloat16
1516
----------------

etc/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set -o errexit
66

77
# This is the master location at which to change version number
8-
VERSION="0.2.1"
8+
VERSION="0.3"
99

1010
# Run the script to change the version elsewhere
1111
perl -pi -e 's/^(release|version) = "([\d.]+)"/$1 = "'$VERSION'"/' docs/source/conf.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package-dir = {"" = "src"}
1010

1111
[project]
1212
name = "gfloat"
13-
version = "0.2.1" # Set version in package.sh
13+
version = "0.3" # Set version in package.sh
1414
authors = [
1515
{name = "Andrew Fitzgibbon", email = "[email protected]"},
1616
]

0 commit comments

Comments
 (0)