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
3 changes: 3 additions & 0 deletions python/sglang/jit_kernel/benchmark/bench_cast.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
run_benchmark,
)
from sglang.jit_kernel.cast import downcast_fp8 as downcast_fp8_jit
from sglang.test.ci.ci_register import register_cuda_ci

register_cuda_ci(est_time=10, suite="stage-b-kernel-benchmark-1-gpu-large")

DEVICE = DEFAULT_DEVICE
DTYPE = torch.bfloat16
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
from sglang.jit_kernel.fused_qknorm_rope import (
fused_qk_norm_rope as fused_qk_norm_rope_jit,
)
from sglang.test.ci.ci_register import register_cuda_ci

register_cuda_ci(est_time=6, suite="stage-b-kernel-benchmark-1-gpu-large")

try:
from sgl_kernel import fused_qk_norm_rope as fused_qk_norm_rope_aot
Expand Down
4 changes: 4 additions & 0 deletions python/sglang/jit_kernel/tests/test_cast.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
import torch

from sglang.jit_kernel.cast import downcast_fp8
from sglang.test.ci.ci_register import register_cuda_ci

register_cuda_ci(est_time=15, suite="stage-b-kernel-unit-1-gpu-large")
register_cuda_ci(est_time=120, suite="nightly-kernel-1-gpu", nightly=True)

DTYPES = [torch.bfloat16, torch.float16]

Expand Down
4 changes: 4 additions & 0 deletions python/sglang/jit_kernel/tests/test_fused_qknorm_rope.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
import torch

from sglang.jit_kernel.fused_qknorm_rope import fused_qk_norm_rope
from sglang.test.ci.ci_register import register_cuda_ci

register_cuda_ci(est_time=35, suite="stage-b-kernel-unit-1-gpu-large")
register_cuda_ci(est_time=256, suite="nightly-kernel-1-gpu", nightly=True)

try:
from sgl_kernel import fused_qk_norm_rope as fused_qk_norm_rope_aot
Expand Down
Loading