Skip to content
Draft
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 python/sglang/srt/models/llama_eagle3.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def forward(
residual: Optional[torch.Tensor],
) -> Tuple[torch.Tensor, torch.Tensor]:

residual = hidden_states
embeds = self.input_layernorm(embeds)
hidden_states = self.hidden_norm(hidden_states)
embeds = self.input_layernorm(embeds)
residual = hidden_states

hidden_states = torch.cat([embeds, hidden_states], dim=-1)
# Self Attention
Expand Down
3 changes: 2 additions & 1 deletion python/sglang/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,8 @@ def download_and_cache_file(url: str, filename: Optional[str] = None):


def is_in_ci():
from sglang.test.test_utils import is_in_ci
# from sglang.test.test_utils import is_in_ci
return False

return is_in_ci()

Expand Down