Skip to content

Commit 6397458

Browse files
authored
[chore] Update openYuanrong related expression (#96)
as title Signed-off-by: 0oshowero0 <o0shower0o@outlook.com>
1 parent 80f4e97 commit 6397458

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ TransferQueue offers **fine-grained, sub-sample-level** data management and **lo
3838
- **Dec 30, 2025**: **TransferQueue x verl** integration has been tested with the DAPO algorithm at scale **(64 nodes, 1024 cards)**. It significantly optimizes host memory utilization and accelerates data transfers. Stay tuned for more details!
3939
- **Dec 20, 2025**: 🔥 The official [tutorial](https://github.com/Ascend/TransferQueue/tree/main/tutorial) is released! Feel free to check it out.
4040
- **Nov 10, 2025**: We disentangled the data retrieval logic from TransferQueueController [PR#101](https://github.com/TransferQueue/TransferQueue/pull/101). Now you can implement your own `Sampler` to customize data consumption.
41-
- **Nov 5, 2025**: We provide a `KVStorageManager` that simplifies the integration with KV-based storage backends [PR#96](https://github.com/TransferQueue/TransferQueue/pull/96). The first available KV-based backend is [Yuanrong](https://gitcode.com/openeuler/yuanrong-datasystem).
41+
- **Nov 5, 2025**: We provide a `KVStorageManager` that simplifies the integration with KV-based storage backends [PR#96](https://github.com/TransferQueue/TransferQueue/pull/96). The first available KV-based backend is [openYuanrong](https://gitcode.com/openeuler/yuanrong-datasystem).
4242
- **Nov 4, 2025**: Data partitioning capability is available in [PR#98](https://github.com/TransferQueue/TransferQueue/pull/98). Now you can define logical data partitions to manage your train/val/test datasets.
4343
- **Oct 25, 2025**: Storage backends are now pluggable in [PR#66](https://github.com/TransferQueue/TransferQueue/pull/66). You can try to integrate your own storage backend with TransferQueue now!
4444
- **Oct 21, 2025**: Early integration with verl is ready [verl/pull/3649](https://github.com/volcengine/verl/pull/3649). Following PRs will optimize the single controller architecture by fully decoupling data & control flows.

scripts/performance_test/draw_figure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# All normalization lives here so the shell script keeps simple lowercase names.
3333
BACKEND_DISPLAY_NAMES = {
3434
"simplestorage": "SimpleStorage",
35-
"yuanrong": "Yuanrong",
35+
"yuanrong": "openYuanrong",
3636
"mooncakestore": "MooncakeStore",
3737
"ray_baseline": "Ray",
3838
}
@@ -96,7 +96,7 @@ def make_xlabel(size_label: str) -> str:
9696
df["Scenario"] = df["backend_parsed"]
9797

9898
# Set backend display order: only include backends that actually exist in the data
99-
preferred_backend_order = ["Ray", "SimpleStorage", "Yuanrong", "MooncakeStore"]
99+
preferred_backend_order = ["Ray", "SimpleStorage", "openYuanrong", "MooncakeStore"]
100100

101101
# Get actual backends present in the data, maintaining preferred order
102102
actual_backends = df["Scenario"].unique().tolist()

0 commit comments

Comments
 (0)