Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
742d214d
Unverified
Commit
742d214d
authored
Feb 13, 2026
by
Marek Michalowski
Committed by
GitHub
Feb 13, 2026
Browse files
[Bugfix] fix the import path in moe test utils.py (#34245)
Signed-off-by:
Marek Michalowski
<
marek.michalowski@arm.com
>
parent
4137c5df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
tests/kernels/moe/utils.py
tests/kernels/moe/utils.py
+5
-5
No files found.
tests/kernels/moe/utils.py
View file @
742d214d
...
@@ -7,11 +7,6 @@ import vllm._custom_ops as ops
...
@@ -7,11 +7,6 @@ import vllm._custom_ops as ops
from
tests.kernels.quant_utils
import
per_block_cast_to_int8
from
tests.kernels.quant_utils
import
per_block_cast_to_int8
from
tests.kernels.quantization.nvfp4_utils
import
FLOAT4_E2M1_MAX
,
FLOAT8_E4M3_MAX
from
tests.kernels.quantization.nvfp4_utils
import
FLOAT4_E2M1_MAX
,
FLOAT8_E4M3_MAX
from
vllm.model_executor.layers.activation
import
SiluAndMul
from
vllm.model_executor.layers.activation
import
SiluAndMul
from
vllm.model_executor.layers.fused_moe
import
(
TritonExperts
,
fused_experts
,
fused_topk
,
)
from
vllm.model_executor.layers.fused_moe.activation
import
MoEActivation
from
vllm.model_executor.layers.fused_moe.activation
import
MoEActivation
from
vllm.model_executor.layers.fused_moe.config
import
(
from
vllm.model_executor.layers.fused_moe.config
import
(
FusedMoEConfig
,
FusedMoEConfig
,
...
@@ -24,10 +19,15 @@ from vllm.model_executor.layers.fused_moe.fused_batched_moe import (
...
@@ -24,10 +19,15 @@ from vllm.model_executor.layers.fused_moe.fused_batched_moe import (
BatchedTritonExperts
,
BatchedTritonExperts
,
NaiveBatchedExperts
,
NaiveBatchedExperts
,
)
)
from
vllm.model_executor.layers.fused_moe.fused_moe
import
(
TritonExperts
,
fused_experts
,
)
from
vllm.model_executor.layers.fused_moe.modular_kernel
import
FusedMoEModularKernel
from
vllm.model_executor.layers.fused_moe.modular_kernel
import
FusedMoEModularKernel
from
vllm.model_executor.layers.fused_moe.prepare_finalize
import
(
from
vllm.model_executor.layers.fused_moe.prepare_finalize
import
(
MoEPrepareAndFinalizeNoEP
,
MoEPrepareAndFinalizeNoEP
,
)
)
from
vllm.model_executor.layers.fused_moe.router.fused_topk_router
import
fused_topk
from
vllm.model_executor.layers.fused_moe.utils
import
moe_kernel_quantize_input
from
vllm.model_executor.layers.fused_moe.utils
import
moe_kernel_quantize_input
from
vllm.utils.deep_gemm
import
per_block_cast_to_fp8
from
vllm.utils.deep_gemm
import
per_block_cast_to_fp8
from
vllm.utils.math_utils
import
round_up
from
vllm.utils.math_utils
import
round_up
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment