Skip to content

Commit

Permalink
Fix spelling (dmlc#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
larroy authored and piiswrong committed Oct 8, 2017
1 parent 2419833 commit ea4a4fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mshadow/tensor.h
Original file line number Diff line number Diff line change
Expand Up @@ -359,20 +359,20 @@ inline Shape<5> ConvertLayout(const Shape<5>& src, int src_layout, int dst_layou
}

/*!
* \brief computaion stream structure, used for asynchronize computation
* \brief computaion stream structure, used for asynchronous computations
*/
template<typename Device>
struct Stream {
// this is only a dummy implementation for CPU
// for GPU, the actual implementation will be specialized in tensor_gpu-inl.h
/*!
* \brief wait for all the computation associated
* \brief wait for all the computations associated
* with this stream to complete
*/
inline void Wait(void) {}
/*!
* \brief query whether the the stream is idle
* \return true if the stream is idle and all the job have been completed
* \return true if the stream is idle and all the jobs have been completed
*/
inline bool CheckIdle(void) {
return true;
Expand Down

0 comments on commit ea4a4fe

Please sign in to comment.