Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Small typo fixes in batch_norm-inl.h #15527

Merged
merged 5 commits into from
Jul 15, 2019
Merged
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
5 changes: 2 additions & 3 deletions src/operator/nn/batch_norm-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ enum BatchNormOpAuxiliary {kMovingMean, kMovingVar}; // aux_states
constexpr int DEFAULT_AXIS = 1;
} // namespace batchnorm

/*! \brief Parameters for BatchNoram operator */
/*! \brief Parameters for BatchNorm operator */
struct BatchNormParam : public dmlc::Parameter<BatchNormParam> {
double eps;
float momentum;
Expand Down Expand Up @@ -167,7 +167,7 @@ void BatchNormBackwardImpl(mshadow::Stream<gpu> *stream,
* \param out_data array of output data, pointer is used to indicate that this is holder
* the space of TBlob in out_data must be pre-allocated with InferShape
* \param aux_states Auxiliary states of operator. Normally operator doesn't
* need, epecial case like Batch Norm requires.
* need, special case like Batch Norm requires.
* \sa OpReqType, OpContext
*/
template <typename xpu, typename DType, typename AccReal>
Expand Down Expand Up @@ -413,4 +413,3 @@ extern volatile bool disable_mkl;
#endif

#endif // MXNET_OPERATOR_NN_BATCH_NORM_INL_H_