Skip to content

Commit

Permalink
Skip BLOCKWISE_8BIT in lossy_sequential test until
Browse files Browse the repository at this point in the history
  • Loading branch information
borzunov committed Jun 30, 2023
1 parent f8b32ec commit 3bd54db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_remote_sequential.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ def get_request_metadata(self, protocol: str, *args, **kwargs):
if protocol == "rpc_forward":
metadata["output_compression"] = (runtime_pb2.CompressionType.FLOAT16,)
elif protocol == "rpc_backward":
metadata["output_compression"] = (runtime_pb2.CompressionType.BLOCKWISE_8BIT,)
metadata["output_compression"] = (runtime_pb2.CompressionType.FLOAT16,)
# FIXME: Initially, we used CompressionType.BLOCKWISE_8BIT for rpc_backward() here.
# This is currently broken since hivemind==1.1.8 is not compatible with bitsandbytes==0.39.1.
# Please revert to BLOCKWISE_8BIT once this is fixed: https://github.com/learning-at-home/hivemind/issues/572
return metadata


Expand Down

0 comments on commit 3bd54db

Please sign in to comment.