- May 29, 2018
-
-
Wenhao Hu authored
* raise error when cannot get shape in reshape * fix pylint
-
Yizhi Liu authored
* AlterOpLayout with tvm.target * fix test
-
Yizhi Liu authored
* fix restore layout in AlterOpLayout * lint test case
-
Yizhi Liu authored
* allow missing FCorrectLayout * misunderstood OpMap[], fix
-
Liangfu Chen authored
-
Tatsuya Nishiyama authored
-
Yizhi Liu authored
* rename FInferLayout -> FCorrectLayout * correct stupid IDE * update submodule tvm
-
Yizhi Liu authored
-
Pariksheet Pinjari authored
-
MORITA Kazutaka authored
-
Pariksheet Pinjari authored
-
Yizhi Liu authored
-
Pariksheet Pinjari authored
-
Pariksheet Pinjari authored
* Issue fix for tiny yolo There was an issue in maxpool frontend for tiny-yolo. It is fixed in PR. https://github.com/dmlc/nnvm/issues/431 * updated review comment, python 3 compatabilty * Update darknet.py * Updated review comment
-
Tianqi Chen authored
* Update TVM to latest * remove darknet from testing due to cffi
-
Pariksheet Pinjari authored
-
Haibin Lin authored
* declare type for optional tshape * add doc * move code to another place
-
Tianqi Chen authored
-
Tianqi Chen authored
-
Wenhao Hu authored
-
Yao Wang authored
-
Wenhao Hu authored
-
Wenhao Hu authored
-
Yuwei Hu authored
-
Yan Huang authored
-
Pariksheet Pinjari authored
-
Tianqi Chen authored
-
Tianqi Chen authored
-
nhynes authored
-
Atsushi Nukariya authored
* [DOCS] add a solution to installation error * Fix the command for updating submodules
-
Siva authored
-
Zhixun Tan authored
-
Joshua Z. Zhang authored
* fix same var used in single op * revert to older version
-
Tianqi Chen authored
-
masahi authored
* initial NHWC layout support * remove layout param from softmax * more nhwc support * fix typo * add nhwc layout test * fix lint * update tvm * update for c++ topi * fix lint * update tvm
-
Siva authored
-
Siju Samuel authored
The below compilation warning is fixed. In file included from /mnt/D_DRIVE/work/nnvm_8_feb/dmlc-core/include/dmlc/any.h:16:0, from include/nnvm/./base.h:11, from include/nnvm/graph.h:15, from src/compiler/fold_scale_axis.cc:6: src/compiler/fold_scale_axis.cc: In function ‘nnvm::Graph nnvm::compiler::FoldScaleAxis(nnvm::Graph)’: src/compiler/fold_scale_axis.cc:155:39: warning: enum constant in boolean context [-Wint-in-bool-context] CHECK(kind == kPassTroughFirst || kMulConsumer); ^ /mnt/D_DRIVE/work/nnvm_8_feb/dmlc-core/include/dmlc/./logging.h:110:9: note: in definition of macro ‘CHECK’ if (!(x))
-
Yao Wang authored
-
alex-weaver authored
* Updated TVM version. Implemented fix for nnvm_compiler crash on exit on windows. Changed TOPI ops from using python to using C++ where applicable. * Fix lint * Fix lint * Fix macro * Fix reshape * Update TVM to fix test fails
-
Siju Samuel authored
The below compilation warning issue has been fixed. src/top/tensor/matrix_op.cc:37:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 0; i < lshape.ndim() - 1; i++) oshape[i] = lshape[i]; ^ src/top/tensor/matrix_op.cc:38:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 1; i < rshape.ndim(); i++) oshape[i + lshape.ndim() - 1] = rshap
-