File: bfloat16.go

package info (click to toggle)
golang-github-d4l3k-go-bfloat16 0.0~git20211005.690c3bd-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 84 kB
  • sloc: makefile: 2
file content (55 lines) | stat: -rw-r--r-- 998 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package bfloat16

import "unsafe"

type BF16 uint16

func FromBytes(buf []byte) BF16 {
	return BF16(uint16(buf[0]) + uint16(buf[1])<<8)
}

func ToBytes(b BF16) []byte {
	return []byte{byte(b & 0xFF), byte(b >> 8)}
}

func Decode(buf []byte) []BF16 {
	var out []BF16
	for i := 0; i < len(buf); i += 2 {
		out = append(out, FromBytes(buf[i:]))
	}
	return out
}

func Encode(f []BF16) []byte {
	var out []byte
	for _, a := range f {
		out = append(out, ToBytes(a)...)
	}
	return out
}

func DecodeFloat32(buf []byte) []float32 {
	var out []float32
	for i := 0; i < len(buf); i += 2 {
		out = append(out, ToFloat32(FromBytes(buf[i:])))
	}
	return out
}

func EncodeFloat32(f []float32) []byte {
	var out []byte
	for _, a := range f {
		out = append(out, ToBytes(FromFloat32(a))...)
	}
	return out
}

func ToFloat32(b BF16) float32 {
	u32 := uint32(b) << 16
	return *(*float32)(unsafe.Pointer(&u32))
}

func FromFloat32(f float32) BF16 {
	u32 := *(*uint32)(unsafe.Pointer(&f))
	return BF16(u32 >> 16)
}