forked from opendatahub-io/vllm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix __init__ files (opendatahub-io#52)
* fix __init__ files * make yapf happy
- Loading branch information
1 parent
4aba555
commit 0370719
Showing
2 changed files
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
from vllm.model_executor.layers.fused_moe.fused_moe import ( | ||
fused_moe, get_config_file_name, invoke_fused_moe_kernel, | ||
moe_align_block_size) | ||
from vllm.model_executor.sampling_metadata import SamplingMetadata | ||
from vllm.model_executor.utils import set_random_seed | ||
|
||
__all__ = [ | ||
"fused_moe", | ||
"get_config_file_name", | ||
"moe_align_block_size", | ||
"invoke_fused_moe_kernel", | ||
"SamplingMetadata", | ||
"set_random_seed", | ||
] |
9 changes: 4 additions & 5 deletions
9
vllm/model_executor/layers/fused_moe/__init__.py
100644 → 100755
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
from vllm.model_executor.layers.fused_moe.fused_moe import ( | ||
fused_experts, fused_moe, fused_topk, get_config_file_name) | ||
fused_experts, fused_moe, fused_topk, get_config_file_name, | ||
invoke_fused_moe_kernel, moe_align_block_size) | ||
|
||
__all__ = [ | ||
"fused_moe", | ||
"fused_topk", | ||
"fused_experts", | ||
"get_config_file_name", | ||
"fused_moe", "fused_topk", "fused_experts", "get_config_file_name", | ||
"invoke_fused_moe_kernel", "moe_align_block_size" | ||
] |