You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Turns out the cause for this that python defaulted to i64 union arm of the TensorBuffer, while rust chose a different integer type.
We check for this when the mismatch is at the top-level of the table, but we don't do so recursively.
In this case we detected the error instead via size mismatch:
Sizes don't match! 4113 (rerun.components.TensorData) vs. 4073 (rerun.components.TensorData) bytes. Perhaps the validity differs?
IPC size is 6672 vs 6608 bytes
Related, it would be nice if the printed tables showed the union-arms:
Barcharts has a roundtrip test failure with:
Python:
Rust
Turns out the cause for this that python defaulted to
i64
union arm of the TensorBuffer, while rust chose a different integer type.We check for this when the mismatch is at the top-level of the table, but we don't do so recursively.
In this case we detected the error instead via size mismatch:
Related, it would be nice if the printed tables showed the union-arms:
Right now we have:
But this check would be much more clear if this displayed as:
The text was updated successfully, but these errors were encountered: