This is an automated email from the ASF dual-hosted git repository.
marcoabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new 14ae5d4 Fix repeated typo in mxnet_op.h (#13406)
14ae5d4 is described below
commit 14ae5d4ef09ce4334603da9ad32af1f697ad6961
Author: Kellen Sunderland <[email protected]>
AuthorDate: Mon Nov 26 10:26:04 2018 -0800
Fix repeated typo in mxnet_op.h (#13406)
---
src/operator/mxnet_op.h | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/operator/mxnet_op.h b/src/operator/mxnet_op.h
index e775696..13f1a0e 100644
--- a/src/operator/mxnet_op.h
+++ b/src/operator/mxnet_op.h
@@ -498,9 +498,9 @@ struct Kernel<OP, cpu> {
* \brief Launch a generic CPU kernel.
* When using this for a new kernel op, add declaration and tuning objects to
* operator_tune.cc
- * \tparam Args Varargs type to eventually pass to the OP::Map() functoion
+ * \tparam Args Varargs type to eventually pass to the OP::Map() function
* \param N Number of iterations
- * \param args Varargs to eventually pass to the OP::Map() functoion
+ * \param args Varargs to eventually pass to the OP::Map() function
*/
template<typename ...Args>
inline static bool Launch(mshadow::Stream<cpu> *, const int N, Args... args)
{
@@ -530,10 +530,10 @@ struct Kernel<OP, cpu> {
* operator_tune.cc
* \tparam PRIMITIVE_OP The primitive operation to use for tuning
* \tparam DType Data type
- * \tparam Args Varargs type to eventually pass to the OP::Map() functoion
+ * \tparam Args Varargs type to eventually pass to the OP::Map() function
* \param N Number of iterations
* \param dest Destination pointer (used to infer DType)
- * \param args Varargs to eventually pass to the OP::Map() functoion
+ * \param args Varargs to eventually pass to the OP::Map() function
*/
template<typename PRIMITIVE_OP, typename DType, typename ...Args>
static void LaunchTuned(mshadow::Stream<cpu> *, const int N, Args... args) {
@@ -560,7 +560,7 @@ struct Kernel<OP, cpu> {
/*!
* \brief Launch custom-tuned kernel where each thread is set to
* operate on a contiguous partition
- * \tparam Args Varargs type to eventually pass to the OP::Map() functoion
+ * \tparam Args Varargs type to eventually pass to the OP::Map() function
* \param N Number of iterations
* \param args Varargs to eventually pass to the UseOMP() and OP::Map()
functions
*/
@@ -586,10 +586,10 @@ struct Kernel<OP, cpu> {
* \brief Launch a tunable OP with implicitly-supplied data type
* \tparam DType Data type
* \tparam T OP type
- * \tparam Args Varargs type to eventually pass to the OP::Map() functoion
+ * \tparam Args Varargs type to eventually pass to the OP::Map() function
* \param s Stream (usually null for CPU)
* \param N Number of iterations
- * \param args Varargs to eventually pass to the OP::Map() functoion
+ * \param args Varargs to eventually pass to the OP::Map() function
* \return Always true
*/
template<typename DType, typename T = OP, typename ...Args>
@@ -604,10 +604,10 @@ struct Kernel<OP, cpu> {
* \brief Launch a tunable OP wrapper with explicitly-supplied data type (ie
op_with_req)
* \tparam DType Data type
* \tparam T Wrapper type
- * \tparam Args Varargs type to eventually pass to the OP::Map() functoion
+ * \tparam Args Varargs type to eventually pass to the OP::Map() function
* \param s Stream (usually null for CPU)
* \param N Number of iterations
- * \param args Varargs to eventually pass to the OP::Map() functoion
+ * \param args Varargs to eventually pass to the OP::Map() function
* \return Always true
*/
template<typename DType, typename T = OP, typename ...Args>