- 22 Dec, 2019 6 commits
-
-
* [TEST] Remove nnvm related code in topi and test script * Remove docs dep
Tianqi Chen committed -
Neo Chien committed
-
Zhao Wu committed
-
dtype.h -> runtime/data_type.h Changes: - Rename all old reference of tvm::Type to DataType - ExprNode.type -> ExprNode.dtype - Expr.type() -> Expr.dtype() - Change Expr related functions to expr_operator. - DataType::min() -> min_value(DataType) - DataType::max() -> max_value(DataType) - Move type constructor Int, UInt, Float, Handle, Bool into DataType. - Int(bits) -> DataType::Int(bits) - UInt(bits) -> DataType::UInt(bits)
Tianqi Chen committed -
Tianqi Chen committed
-
Siyuan Feng committed
-
- 21 Dec, 2019 1 commit
-
-
* [VTA] improved virtual memory mapping * Update virtual_memory.cc
Liangfu Chen committed
-
- 20 Dec, 2019 4 commits
-
-
Tianqi Chen committed
-
Zhi committed
-
* [PYTHON][FFI] Cythonize NDArray.copyto * Cythonize the shape property
Tianqi Chen committed -
* [DOCS] Mention Ninja build system in install/from_source.rst * Address comments
Hideto Ueno committed
-
- 18 Dec, 2019 6 commits
-
-
One of the loops in hybrid_nms used for performing the max_output_size reordering was incorrectly designated as parallel resulting in incorrect behaviour. This patch changes that loop to a serial loop. Change-Id: I97184f5887f5f028d8ab339fa2808eb7630a4017
mbarrett97 committed -
Haichen Shen committed
-
* Add Expand to onnx.py * add test function for expand * Fix a onnx frontend test * Add tests for the value itself instead of shape only on test_expand * Cleaned up some unnecessary modifications.
Takato Yamada committed -
Alex Gladkov committed
-
* Update legacy places from nnvm to relay. This PR prepares the current mainline to remove nnvm compiler dep. * remove legacy stage
Tianqi Chen committed -
Zhi committed
-
- 17 Dec, 2019 1 commit
-
-
Change-Id: If2075df5475505f2da87dae7145af5a7ab83d8a4
lhutton1 committed
-
- 16 Dec, 2019 4 commits
-
-
Liangfu Chen committed
-
masahi committed
-
Cody Yu committed
-
YixinBao committed
-
- 15 Dec, 2019 3 commits
-
-
Liang ZOU committed
-
* Use the best tuner possible * Add comment denoting availability of better tuners * Fix typos and wording
miheer vaidya committed -
Josh Fromm committed
-
- 14 Dec, 2019 1 commit
-
-
* Replace sigmoid() with tanh() in tests for TANH
Ina Dobreva committed
-
- 13 Dec, 2019 3 commits
-
-
* Fix bias_add gradient A change caused collapse_sum_like to reject implicit dimension broadcasting for bias_add gradient, so switch to explicit sum reduction on the non-bias axis dimensions. * Lint fix
SWu committed -
Alexander Pivovarov committed
-
Leandro Nunes committed
-
- 12 Dec, 2019 7 commits
-
-
* fix mul rewrite * register Realize Rewrite for global avg pool and add test * remove unnecessary check * improve the test case
masahi committed -
* [Fix][Hybrid] Fix hybrid script to support array of tensors * add test case * clean up * trigger ci
Haichen Shen committed -
Dmitri Makarov committed
-
* [TOPI] implement pool3d op * use PoolInferCorrectLayout for both 2d and 3d pooling * unify MakeMaxPool and MakeAvgPool
optima2005 committed -
* fix serialization precision loss in float When we want to serialize a tvm.tensor object(like pickle), we will get a precision loss cause by std::to_string()。 For example, a2.value will be 0.0 while a.value=0.00000001 in the following: import tvm import pickle a = tvm.const(0.00000001, 'float32') a2 = pickle.loads(pickle.dumps(a)) * remove line end spaces
LaiyuanGong committed -
This imports the CUDA schedules to rocm.
Thomas Viehmann committed -
Peter Yeh committed
-
- 11 Dec, 2019 4 commits
-
-
There is significant duplication between functions. Spotted while looking to move the tensorflow and tflite framework support to later than 1.13.1. The tests barf around resize_nearest_neighbour not ignoring the attribute 'helpful_pixel_centers'. That upgrade is a separate discussion while this can go in independently. Thanks, Ramana
Ramana Radhakrishnan committed -
Liang ZOU committed
-
MORITA Kazutaka committed
-
Peter Yeh committed
-