Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
pip install dist/*.whl --force-reinstall
- name: Test with pytest (TQ_ZERO_COPY_SERIALIZATION=False)
run: |
pytest
pytest tests
- name: Test with pytest (TQ_ZERO_COPY_SERIALIZATION=True)
run: |
ray stop --force
export TQ_ZERO_COPY_SERIALIZATION=True
pytest
pytest tests
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
</h2>
<a href="https://arxiv.org/abs/2507.01663" target="_blank"><strong>Paper</strong></a>
| <a href="https://zhuanlan.zhihu.com/p/1930244241625449814" target="_blank"><strong>Zhihu</strong></a>
| <a href="https://github.com/TransferQueue/community_doc/blob/main/other_assets/WeChatGroup.png?raw=true" target="_blank"><strong>WeChat</strong></a>
<br />
<br />

Expand Down
4 changes: 2 additions & 2 deletions scripts/performance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@


from transfer_queue import ( # noqa: E402
AsyncTransferQueueClient,
SimpleStorageUnit,
TransferQueueClient,
TransferQueueController,
process_zmq_server_info,
)
Expand Down Expand Up @@ -247,7 +247,7 @@ def _initialize_data_system(self):
tq_config.storage_unit_infos = self.data_system_storage_unit_infos
self.config = OmegaConf.merge(tq_config, self.config)

self.data_system_client = AsyncTransferQueueClient(
self.data_system_client = TransferQueueClient(
client_id="Trainer", controller_info=self.data_system_controller_info
)
self.data_system_client.initialize_storage_manager(manager_type="AsyncSimpleStorageManager", config=self.config)
Expand Down