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
2 changes: 1 addition & 1 deletion .github/workflows/sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ jobs:
pip3 install vllm==0.5.4
- name: Running sandbox tests on 8 L20 GPUs
run: |
cd tests/sandbox
cd tests/utils/reward_score
pytest -s -x .
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ray_gpu
name: single_controller_unit_tests

on:
# Trigger the workflow on push or pull request,
Expand Down Expand Up @@ -26,7 +26,7 @@ permissions:
contents: read

jobs:
ray_gpu:
single_controller_unit_tests:
runs-on: [L20x8]
timeout-minutes: 10 # Increase this timeout value as needed
env:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion verl/trainer/ppo/ray_trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ def init_workers(self):

self.async_rollout_mode = True
self.async_rollout_manager = AsyncLLMServerManager(
config=self.config.actor_rollout_ref,
config=self.config,
worker_group=self.actor_rollout_wg,
)

Expand Down
2 changes: 1 addition & 1 deletion verl/utils/checkpoint/checkpoint_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def find_latest_ckpt_path(path, directory_format="global_step_{}"):

tracker_file = get_checkpoint_tracker_filename(path)
if not os.path.exists(tracker_file):
print("Checkpoint tracker file does not exist: %s", tracker_file)
print(f"Checkpoint tracker file does not exist: {tracker_file}")
return None

with open(tracker_file, "rb") as f:
Expand Down
Loading