fpc icon indicating copy to clipboard operation
fpc copied to clipboard

Fast lossless compression of floating point data in Go

Results 3 fpc issues
Sort by recently updated
recently updated
newest added

``` func Test_fpc(t *testing.T) { var buf bytes.Buffer w := fpc.NewWriter(&buf) assert.NoError(t, w.WriteFloat(1)) assert.NoError(t, w.Close()) reader := fpc.NewReader(bytes.NewReader(buf.Bytes())) v, err := reader.ReadFloat() assert.NoError(t, err) fmt.Println(v) } ``` the output is...

Hi I'm interested in using it for compressing float32 arrays of thousands of gigabytes . Can it be done?

### Overview This is a very cool project! While integrating the library into a project, I found a few places where performance could be improved relatively easily. My specific use...