This is an automated email from the ASF dual-hosted git repository.
sanirudh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 97d7a3512b Fixing probability comment (#16850)
97d7a3512b is described below
commit 97d7a3512bf95b9fbc1889ab988b4df6ea7b3106
Author: Thais Camacho <[email protected]>
AuthorDate: Sun Apr 7 10:09:31 2024 -0300
Fixing probability comment (#16850)
---
src/auto_scheduler/search_policy/utils.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/auto_scheduler/search_policy/utils.h
b/src/auto_scheduler/search_policy/utils.h
index 76069d61b4..76fb77dd95 100644
--- a/src/auto_scheduler/search_policy/utils.h
+++ b/src/auto_scheduler/search_policy/utils.h
@@ -628,7 +628,7 @@ inline Array<State> RandomSampleStates(const Array<State>&
in_states, std::mt199
return out_states;
}
-/*! \brief Compute prefix-sum probabiilty based on the given weights */
+/*! \brief Compute prefix-sum probability based on the given weights */
inline void ComputePrefixSumProb(const std::vector<float>& weights,
std::vector<double>* prefix_sum_probs) {
// Compute selection probabilities.