Skip to content
Open
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
21 changes: 21 additions & 0 deletions NOTICE

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Claude suggested that this is a proper copyright notice but this should definitely be checked by someone more familiar with the repo's conventions around this

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
SkyRL
Copyright NovaSky-AI and contributors

This product includes software developed at third parties, redistributed under
the Apache License, Version 2.0:

- verl (https://github.com/volcengine/verl)
Copyright 2023-2024 Bytedance Ltd. and/or its affiliates

The fused linear-cross-entropy Triton kernels in
skyrl/backends/skyrl_train/distributed/megatron/fused_linear_logprob_triton.py
are adapted from verl/utils/kernel/{kernels.py,linear_cross_entropy.py}.
Portions of those kernels are:
Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.

- NeMo-Aligner / NeMo-RL (https://github.com/NVIDIA-NeMo/RL)
Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.

Portions of
skyrl/backends/skyrl_train/distributed/megatron/model_utils.py are ported
from NeMo-Aligner by way of NeMo-RL.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,14 @@ megatron = [
"nvidia-modelopt; sys_platform == 'linux'",
]

# Optional Triton backend for the fused linear log-prob (trainer.fused_linear_logprob_backend=
# "triton"). Triton already ships transitively with the CUDA torch in the megatron extra; this
# extra makes the opt-in explicit. The fused-logprob module degrades gracefully (TRITON_AVAILABLE
# = False, torch backend fallback) when Triton is absent, so this is not required for the default.
triton = [
"triton>=3.2.0; sys_platform == 'linux'",
]

flashrl = [
"skyrl[skyrl-train]",
# NOTE: Custom vLLM wheel must be installed separately.
Expand Down
Loading