- 03 Jan, 2020 1 commit
-
-
* add onnx resize converter * update frontends * updating topi * adding onnx resize tests * fixed NHWC test by casting size dtype to int32 * fix tests * fix lint * update existing test cases * fix tensorflow frontend * fix lint * remove NHWC stuff * update topi resize test for half_pixel * update doc * fix doc * remove onnx resize bits
masahi committed
-
- 01 Jan, 2020 1 commit
-
-
* [FRONTEND][TF] Add conv3d * fix high rtol
optima2005 committed
-
- 31 Dec, 2019 1 commit
-
-
Zhi committed
-
- 30 Dec, 2019 2 commits
-
-
Animesh Jain committed
-
* [REFACTOR][RUNTIME] Move NDArray to Object System. Previously NDArray has its own object reference counting mechanism. This PR migrates NDArray to the unified object protocol. The calling convention of NDArray remained intact. That means NDArray still has its own type_code and its handle is still DLTensor compatible. In order to do so, this PR added a few minimum runtime type detection in TVMArgValue and RetValue only when the corresponding type is a base type(ObjectRef) that could also refer to NDArray. This means that even if we return a base reference object ObjectRef which refers to the NDArray. The type_code will still be translated correctly as kNDArrayContainer. If we assign a non-base type(say Expr) that we know is not compatible with NDArray during compile time, no runtime type detection will be performed. This PR also adopts the object protocol for NDArray sub-classing and removed the legacy NDArray subclass protocol. Examples in apps/extension are now updated to reflect that. Making NDArray as an Object brings all the benefits of the object system. For example, we can now use the Array container to store NDArrays. * Address review comments
Tianqi Chen committed
-
- 29 Dec, 2019 1 commit
-
-
* cublaslt added * fix lint * address comments * address more comments * Trigger CI * Trigger CI
Leyuan Wang committed
-
- 28 Dec, 2019 1 commit
-
-
* [FRONTEND][TF] conv3d_transpose 'SAME' support kernel more than 1x1 * revised per as review comments * add more fallback wolkaround to make all tests pass
optima2005 committed
-
- 27 Dec, 2019 2 commits
-
-
* [TOPI] add 3D upsampling Op. * fix lint issues * change align_corners to coordinate_transformation_mode * fix resize3d half_pixel * make a simple function and clean up trilinear_resize3d_python * fix doc
optima2005 committed -
Animesh Jain committed
-
- 26 Dec, 2019 2 commits
-
-
Animesh Jain committed
-
masahi committed
-
- 24 Dec, 2019 2 commits
-
-
This PR cleans up the left over code for legacy verilog support which was experimental. The new hardware backend path is now support by VTA via TSIM.
Tianqi Chen committed -
* Added tvm function stencil for subpixel operations to topi. * Topi subpixel operators added and tested. * Added subpixel attrs. * Added depth_to_space relay attributes. * depth_to_space fully working. * Fixed NHWC shape bug. * SpaceToDepth in and all tests passing. * lint fixes. * Added string include * Fixed topi formatting. * Added DCR/CDR mode to depthtospace operator.
Josh Fromm committed
-
- 23 Dec, 2019 3 commits
-
-
* Remove NNVM compiler
Tianqi Chen committed -
masahi committed
-
* [Relay] add max_pool3d in relay and TF converter * fix comments
Yong Wu committed
-
- 22 Dec, 2019 2 commits
- 20 Dec, 2019 1 commit
-
-
Zhi committed
-
- 18 Dec, 2019 4 commits
-
-
* 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
-
- 16 Dec, 2019 1 commit
-
-
Cody Yu committed
-
- 14 Dec, 2019 1 commit
-
-
* Replace sigmoid() with tanh() in tests for TANH
Ina Dobreva committed
-
- 13 Dec, 2019 2 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
-
- 12 Dec, 2019 3 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 -
Peter Yeh committed
-
- 10 Dec, 2019 2 commits
-
-
* Fix * clean up
reminisce committed -
* [Relay][Fix] Fix alter op layout when calling a global var * add test case
Haichen Shen committed
-
- 09 Dec, 2019 1 commit
-
-
* use SPLIT & SQUEEZE = UNPACK as implemented in tensorflow parser Relay doesn't support UNPACK * tflite 1.13: UNPACK doesn't work as exepcted -> copies the values from 1st unpacked tensor to the other unpacks * tflite 1.13: doesn't accept negative axis
Ina Dobreva committed
-
- 08 Dec, 2019 2 commits
-
-
Zhi committed
-
Alexander Pivovarov committed
-
- 05 Dec, 2019 1 commit
-
-
* [relay][op] Add shape func to tile * retrigger ci * check dynamic axes * retrigger ci
Zhi committed
-
- 04 Dec, 2019 2 commits
-
-
ziheng committed
-
* implement conv3d op * add back missed conv2d_output_shape by mistake * fix typo and docs, add topi test * rebase to master and merge 2d/3d unification * use cudnn.conv_forward
optima2005 committed
-
- 03 Dec, 2019 2 commits
-
-
* [RUNTIME] Add cudnn conv3d * add output checking to test_cudnn.verify() * fix tests failure * revised per as review comments * unify conv_output_shape, conv_find_algo and conv_forward * convert python list to tvm.array in conv_forward * revise per as comments * 'pass as reference' for vector args * add back con2d/3d seperated implementation * remove unused included header * remove extra std::vectors * remove unused header
optima2005 committed -
abergeron committed
-