- May 29, 2018
-
-
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
-
Siju Samuel authored
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)
-
wl3b10s authored
x = np.transpose(img, (2, 0, 1))[np.newaxis, :] TypeError: an integer is required
-
Liangfu Chen authored
fix similar problem like https://github.com/apache/incubator-mxnet/pull/4589/files .
-
ziheng authored
-
Siva authored
* [Convolution] Error while imported onnx model has weights. Fix the use_bias based on the input parameters to use bias (Ex: sqeezenet). Ref #336 * Review corrections.
-
Yida Wang authored
-
Lianmin Zheng authored
* add CacheItem2Schedule extension * fix lint * move function position * make cache item visible to frontend
-
masahi authored
* add extern lib tutorial * do fix
-
thefiddler authored
* Added test for adding down-/up-sampled layers * Enabled test for adding down-/up-sampled layers * Normalize whitespace
-
masahi authored
-
thefiddler authored
* Added elementwise-add test * Fix typo * Fixed elem-wise ops for lists with len>2
-
Lianmin Zheng authored
* add tutorial for mali gpu * update submodule version * fix doc error * fix server error * fix server in test
-
Siva authored
-
Yao Wang authored
* Explain how to generate module library * Small fix
-
yuruofeifei authored
* Add conv2d max_pool backward op * Added tests * Fix testing * Address comments * Change dot to matmul * Address comments * Break down indicator function * Make greater, less numpy compatible
-
Yuwei Hu authored
-
thefiddler authored
* Keras keeps renaming properties. Update frontend for keras 2.1.3 compatibility * Add error message when inbound_nodes is not found
-
Yuwei Hu authored
* [CI] turn on keras frontend test * fix * using tensorflow cpu version
-
guopinglong authored
* make shape inference of BatchNorm layout neutral * refactor to use the axis variable to do BatchNorm shape inference * refactor to use the axis variable to do BatchNorm shape inference * add unittest to the axis param for batch norm shape inference
-
thefiddler authored
-
Lianmin Zheng authored
-
thefiddler authored
* Add support for keras upsampling * Fix code formatting * Fix indentation * Fix indentation round 2 * Hide unused parameter * Only enable UpSampling2D since the others are not currently supported by TVM * Improve error messages and code layout
-
masahi authored
* add nnvm upsampling symbol * add upsampling mxnet frontend * add doc for upsampling op * cleanup upsampling test * minor fix * use schedule_injective for upsampling * upgrade tvm
-
Joshua Z. Zhang authored
* add more op for onnx 1.0 * fix syntax * fix lint * fix * update 1.0 * fix * update model
-
Hector Li authored
* Add __declspec(dllexport) to class Node and class Op if build on Windows, so that it can be referenced in some test code in MXNet * correct typo * reuse the macro in c_api.h * revert changes on base.h * one more place to revert * use enclosing extern c block * revert a change caused by copy * remove a space
-
masahi authored
* dump lowered ir when debug log * avoid calling tvm.lower() twice when not debug
-
Iblis Lin authored
-
Daniel M. Weeks authored
f9ed337552a26cc55c7c0fb22cd54839ee13f19c added a call to std::log without including cmath
-
Nehal J Wani authored
At present, the build system assumes that the Unix archiv utility 'ar' will always be present in PATH, but this might not be true if a separate toolchain is being used. This patch makes the build system a bit more cross-compile capable.
-
ziheng authored
-
Yao Wang authored
* Add creating gradient symbol * Fix lint * Address comments * Fix typo * Address comment
-
Yuwei Hu authored
-
yuruofeifei authored
* Update docs * Add backward operator to enable backward graph * Fix testing * Refactor top level1 test code * Fix format * Test * Added zeros ones op * Register fill_like operator * Fix unit test
-
Tianqi Chen authored
-
Yao Wang authored
* Add compile library tutorial * Clean output * Refactor with sphinx gallery * Refactor * Change title and other minor fixes
-
Yuwei Hu authored
* keras frontend tutorial * fix
-
Yuwei Hu authored
* vgg16 success * remove six.PY2, use sys.version_info; convert_activation() accepts activation type name(str, e.g. 'relu') as input; * add convert_merge * fix convert_batchnorm; improve tests * fix lint * add numpy-style pad operator * deal with asymmetry padding * resnet50 success * fix pool_convert; xception passes test * update tvm * fix bias error; all tests pass * use > >, not >>
-
abergeron authored
-