- 29 May, 2018 40 commits
-
-
* fix restore layout in AlterOpLayout * lint test case
Yizhi Liu committed -
* allow missing FCorrectLayout * misunderstood OpMap[], fix
Yizhi Liu committed -
Liangfu Chen committed
-
Tatsuya Nishiyama committed
-
* rename FInferLayout -> FCorrectLayout * correct stupid IDE * update submodule tvm
Yizhi Liu committed -
Yizhi Liu committed
-
Pariksheet Pinjari committed
-
MORITA Kazutaka committed
-
Pariksheet Pinjari committed
-
Yizhi Liu committed
-
Pariksheet Pinjari committed
-
* 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
Pariksheet Pinjari committed -
* Update TVM to latest * remove darknet from testing due to cffi
Tianqi Chen committed -
Pariksheet Pinjari committed
-
* declare type for optional tshape * add doc * move code to another place
Haibin Lin committed -
Tianqi Chen committed
-
Tianqi Chen committed
-
Wenhao Hu committed
-
Yao Wang committed
-
Wenhao Hu committed
-
Wenhao Hu committed
-
Yuwei Hu committed
-
Yan Huang committed
-
Pariksheet Pinjari committed
-
Tianqi Chen committed
-
Tianqi Chen committed
-
nhynes committed
-
* [DOCS] add a solution to installation error * Fix the command for updating submodules
Atsushi Nukariya committed -
Siva committed
-
Zhixun Tan committed
-
* fix same var used in single op * revert to older version
Joshua Z. Zhang committed -
Tianqi Chen committed
-
* 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
masahi committed -
Siva committed
-
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))
Siju Samuel committed -
Yao Wang committed
-
* 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
alex-weaver committed -
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
Siju Samuel committed -
Before Fix ************* ************* Module nnvm._base R: 21, 0: Disallow trailing comma tuple (trailing-comma-tuple) R: 27, 0: Disallow trailing comma tuple (trailing-comma-tuple) ----------------------------------- Your code has been rated at 9.99/ After Fix ************* siju@siju-DAEMON:~/D/Community/nnvm$ make lint pylint python/nnvm --rcfile=/media/siju/DATA/Community/nnvm/tests/lint/pylintrc ------------------------------------------------------------------- Your code has been rated at 10.00/10 (previous run: 9.99/10, +0.01)
Siju Samuel committed -
x = np.transpose(img, (2, 0, 1))[np.newaxis, :] TypeError: an integer is required
wl3b10s committed
-