Files
injoyai-tdx/protocol/model_k_test.go
2024-10-23 23:36:56 +08:00

15 lines
165 B
Go

package protocol
import (
"math"
"testing"
)
func Test_getVolume(t *testing.T) {
f := float32(1.03)
n := math.Float32bits(f)
t.Log(n)
t.Log(getVolume(n))
}