This commit is contained in:
Tao Lv 2018-05-24 00:40:10 +08:00 коммит произвёл Tianqi Chen
Родитель 510cd5ec81
Коммит 39cc9c1265
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -103,7 +103,7 @@ void MyFunction() {
static auto& finplace_option_map = Op::GetAttr<FInplaceOption>("FInplaceOption");
// quick look up attribute of add, O(1) time, vector index lookup internally.
auto add_inplace = finplace_option_tbl[add];
auto add_inplace = finplace_option_map[add];
}
```
Besides making the code minimum, this attribute store enables decentralization of projects.

Просмотреть файл

@ -47,7 +47,7 @@ inline Graph ApplyPass(Graph src, const std::string& pass) {
/*!
* \brief Registry entry for DataIterator factory functions.
* \brief Registry entry for pass functions.
*/
struct PassFunctionReg
: public dmlc::FunctionRegEntryBase<PassFunctionReg,