Support multi-stream output verification in codec tests#470
Closed
mmandina wants to merge 2 commits into
Closed
Conversation
mmandina
added a commit
to mmandina/openzl
that referenced
this pull request
Mar 5, 2026
Summary: Pull Request resolved: facebook#470 - Adds `testCodecMultiStream` and `AssertEqMultiStreamFunctionGraph` to the codec test framework, enabling tests to verify that a codec produces the expected output streams from a single input - Adds `FP32_OutputOrder`, `FP64_OutputOrder`, and `FP16_OutputOrder` tests that verify bitsplit_fp splits IEEE 754 floats into the correct mantissa, exponent, and sign streams Differential Revision: D95400978
988d834 to
479be68
Compare
mmandina
added a commit
to mmandina/openzl
that referenced
this pull request
Mar 6, 2026
Summary: Pull Request resolved: facebook#470 - Adds `testCodecVO` and `AssertEqVOFunctionGraph` to the codec test framework, enabling tests to verify that a codec produces the expected output streams from a single input - Adds `FP32_OutputOrder`, `FP64_OutputOrder`, and `FP16_OutputOrder` tests that verify bitsplit_fp splits IEEE 754 floats into the correct mantissa, exponent, and sign streams Differential Revision: D95400978
479be68 to
1423ac8
Compare
Summary: Add bitsplit_fp codec support to OpenZL for floating-point data compression. This extends the existing bitsplit codec family to handle IEE754 floating-point types, enabling more efficient compression of floating-point data streams in the OpenZL framework. Differential Revision: D94410436
Summary: Pull Request resolved: facebook#470 - Adds `testCodecVO` and `AssertEqVOFunctionGraph` to the codec test framework, enabling tests to verify that a codec produces the expected output streams from a single input - Adds `FP32_OutputOrder`, `FP64_OutputOrder`, and `FP16_OutputOrder` tests that verify bitsplit_fp splits IEEE 754 floats into the correct mantissa, exponent, and sign streams Differential Revision: D95400978
1423ac8 to
513918b
Compare
|
This pull request has been merged in 7d099dd. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary:
testCodecMultiStreamandAssertEqMultiStreamFunctionGraphto the codectest framework, enabling tests to verify that a codec produces the expected output
streams from a single input
FP32_OutputOrder,FP64_OutputOrder, andFP16_OutputOrdertests that verifybitsplit_fp splits IEEE 754 floats into the correct mantissa, exponent, and sign streams
Differential Revision: D95400978