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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Validate tag format
if: github.event_name == 'workflow_dispatch'
run: |
if [[ ! "${{ inputs.tag }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+([a-z0-9]+)?$ ]]; then
if [[ ! "${{ inputs.tag }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(\.?[a-z][a-z0-9]*)?$ ]]; then
echo "Error: Tag '${{ inputs.tag }}' does not match the expected format (e.g., v1.2.3 or v1.2.3.post1 or v1.2.3rc1)"
exit 1
fi
Expand Down
2 changes: 2 additions & 0 deletions flashinfer/fused_moe/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,7 @@ def forward(
[-1, -1] if tactic == -1 else tactic,
self.activation_type,
kwargs.get("norm_topk_prob", True),
kwargs.get("routing_replay_out"),
)
elif (
self.dtype_act == DtypeTrtllmGen.Bfloat16
Expand Down Expand Up @@ -1625,6 +1626,7 @@ def trtllm_fp8_per_tensor_scale_moe_op(
[-1, -1] if tactic == -1 else tactic,
activation_type,
norm_topk_prob,
routing_replay_out,
)
if do_finalize:
return [output]
Expand Down
Loading