Commit 971e7671 by ziheng Committed by Tianqi Chen

Fix build status (#145)

parent 23d72ee0
[![Build Status](https://travis-ci.com/tqchen/tvm.svg?token=ZQpnpAReT4LHdjWAX8jR&branch=master)](https://travis-ci.com/dmlc/tvm)
[![Build Status](https://travis-ci.com/dmlc/tvm.svg?token=mkPkB7rD7Myq9dXZa9GV&branch=master)](https://travis-ci.com/dmlc/tvm)
[![GitHub license](http://dmlc.github.io/img/apache2.svg)](./LICENSE)
[Installation](docs/how_to/install.md) |
......
......@@ -21,7 +21,7 @@ namespace ir {
* \sa ExprFunctor, StmtFunctor, PostOrderVisit
*
* \note If you need to return values during Visit:
* - If it is mutaion of the IR, use IRMutator
* - If it is mutation of the IR, use IRMutator
* - If you want to return other things, consider use ExprFunctor/StmtFunctor
* - Watch out for possible bug pattern if you use IRVisitor to simulate returns.
*
......@@ -126,7 +126,7 @@ class IRVisitor {
/*!
* \brief recursively visit the ir in post DFS order node, apply fvisit
* Each node is ganranteed to be visited only once.
* Each node is guaranteed to be visited only once.
* \param node The ir to be visited.
* \param fvisit The visitor function to be applied.
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment