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
17 changes: 17 additions & 0 deletions rl_engine/kernels/ops/pytorch/ffn/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2026 RL-Kernel Contributors
"""Composable Qwen-style feed-forward network reference operators."""

from .tensor_parallel import (
DeterministicTensorParallelCommunication,
FFNContext,
TensorParallelFFN,
shard_qwen3_ffn_weights,
)

__all__ = [
"DeterministicTensorParallelCommunication",
"FFNContext",
"TensorParallelFFN",
"shard_qwen3_ffn_weights",
]
Loading
Loading