Skip to content

Commit def019e

Browse files
authored
bugfix: fix min-p AOT compilation in #713 (#717)
#713 didn't update the function signature of min-p API in AOT pybind file, this PR fixes the issue.
1 parent 989dbfa commit def019e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csrc/flashinfer_ops.cu

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ void top_k_sampling_from_probs(at::Tensor probs, at::Tensor uniform_samples, at:
174174
unsigned int top_k_val, bool deterministic, int64_t cuda_stream);
175175

176176
void min_p_sampling_from_probs(at::Tensor probs, at::Tensor uniform_samples, at::Tensor samples,
177-
at::Tensor success, std::optional<at::Tensor> maybe_min_p_arr,
178-
double min_p_val, bool deterministic, int64_t cuda_stream);
177+
std::optional<at::Tensor> maybe_min_p_arr, double min_p_val,
178+
bool deterministic, int64_t cuda_stream);
179179

180180
void top_k_top_p_sampling_from_probs(at::Tensor probs, at::Tensor uniform_samples,
181181
at::Tensor samples, at::Tensor success,

0 commit comments

Comments
 (0)