- 31 Dec, 2019 1 commit
-
-
* [REFACTOR][OBJECT] Consoldiate NodePtr/Ref/Hash/Equal and macros to Object. Historically, we have classes like NodePtr/Ref/HashEqual. After unified object protocol, these names are just alias of the object counterpart. Moreover, there are helper macros defined over the places for defining these object. This PR consoldiate the terminologies into the corresponding ones in the Object system so we have a clean and consistent API moving forward. * Update include/tvm/attrs.h Co-Authored-By: Wei Chen <ipondering.weic@gmail.com> * fix compilation Co-authored-by: Wei Chen <ipondering.weic@gmail.com>
Tianqi Chen committed
-
- 23 Dec, 2019 1 commit
-
-
* Remove NNVM compiler
Tianqi Chen committed
-
- 22 Dec, 2019 1 commit
-
-
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
-
- 16 Dec, 2019 1 commit
-
-
YixinBao committed
-
- 24 Nov, 2019 2 commits
-
-
* [LINT] Improve the check tool to handle ASF copyright message. * [LINT] Remove unnecessary copyright message as per ASF requirement. * Fix codegen hybrid * [LINT] Broaden license checks to include html, xml * [LINT] Fix rest of the files * Fix notice * [LINT] Improve check file type error message
Tianqi Chen committed -
Yizhi Liu committed
-
- 22 Nov, 2019 1 commit
-
-
tripley committed
-
- 18 Nov, 2019 1 commit
-
-
Tianqi Chen committed
-
- 15 Nov, 2019 1 commit
-
-
Yizhi Liu committed
-
- 06 Nov, 2019 1 commit
-
-
Tianqi Chen committed
-
- 04 Nov, 2019 1 commit
-
-
Kim committed
-
- 01 Nov, 2019 1 commit
-
-
* [NODE][REFACTOR] Rename IRFunctor->NodeFunctor, use function pointer for dispatching. Previously we used std::function for the functor dispatching. It introduces additional overhead and problems during dll destruction(of std::function). This PR changes the std::function to function pointers. This change a bit restrictions around the set_dispatch that we can get around, but will improve the general efficiency by reducing one level of indirection in the std::function. We also no longer need special marcos to register functions to the Functor.
Tianqi Chen committed
-
- 28 Oct, 2019 1 commit
-
-
* :add scale2 for upsample * update unit test for upsampling * support latest upsample op for multiple frontend * fix lint * fix lint * fix lint * fix lint * update scale description and rebase
Xingyu Zhou committed
-
- 24 Oct, 2019 1 commit
-
-
* [NODE][REFACTOR] Refactor reflection system in node. - Removed the old Node, Node is now just an alias of runtime::Object - Introduce ReflectionVTable, a new columnar dispatcher to support reflection - This allows us to remove vtable from most node objects - The VisitAttrs are registered via TVM_RESGITER_NODE_TYPE, they are no longer virtual. - Consolidated serialization and reflection features into node. * Explicit type qualification when calling destructor. * Fix SPIRV, more comments
Tianqi Chen committed
-
- 21 Oct, 2019 1 commit
-
-
* [REFACTOR][NODE][RUNTIME] Move Node to the new Object protocol. This PR removes the original node system, and make node as a subclass of Object. This is a major refactor towards a better unified runtime object system. List of changes in the refactor: - We now hide data_ field, use Downcast explicitly to get a sub-class object. - Removed the node system FFI in python. - Removed the node C API, instead use PackedFunc for list and get attrs. - Change relay::Op::set_attr_type_key(attr_key_name) to relay::Op::set_attr_type<AttrType>(). - This change was necessary because of the new Object registration mechanism. - Subsequent changes to the op registrations - The change revealed a few previous problems that is now fixed. - Patched up a few missing node type registration. - Now we will raise an error if we register object that is not registered. - The original node.h and container.h are kept in the same location. - Calling convention: kObjectHandle now equals the old kNodeHandle, kNodeHandle is removed. - IRFunctor now dispatches on ObjectRef. - Update to the new type checking API: is_type, derived_from are replaced by IsInstance. - Removed .hash member function, instead use C++ convention hasher functors. * Address review comments
Tianqi Chen committed
-
- 08 Oct, 2019 1 commit
-
-
if n_trial is larger then config space.
Attila Dusnoki committed
-
- 08 Sep, 2019 1 commit
-
-
雾雨魔理沙 committed
-
- 01 Sep, 2019 1 commit
-
-
Alexey Golunov committed
-
- 22 Aug, 2019 1 commit
-
-
Josh Fromm committed
-
- 02 Aug, 2019 1 commit
-
-
Neo Chien committed
-
- 16 Jul, 2019 1 commit
-
-
zhengdi committed
-
- 10 Jul, 2019 1 commit
-
-
Tianqi Chen committed
-
- 02 Jul, 2019 1 commit
-
-
Zhi committed
-
- 28 Jun, 2019 1 commit
-
-
Thierry Moreau committed
-
- 27 Jun, 2019 2 commits
-
-
Discovered via: __flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics__ Legacy __print__ statements are syntax errors in Python 3 but __print()__ function works as expected in both Python 2 and Python 3.
cclauss committed -
Discovered via: __flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics__
cclauss committed
-
- 17 Jun, 2019 1 commit
-
-
Howave committed
-
- 15 Jun, 2019 1 commit
-
-
Alexander Pivovarov committed
-
- 10 Jun, 2019 2 commits
-
-
Alexander Pivovarov committed
-
Alexander Pivovarov committed
-
- 07 Jun, 2019 1 commit
-
-
Alexander Pivovarov committed
-
- 06 Jun, 2019 1 commit
-
-
Pedro Larroy committed
-
- 05 Jun, 2019 1 commit
-
-
Przemyslaw Tredak committed
-
- 28 May, 2019 1 commit
-
-
masahi committed
-
- 26 May, 2019 1 commit
-
-
* Add Crop op converter * lint * x
Haichen Shen committed
-
- 24 May, 2019 1 commit
-
-
* [RELAY]Frontend darknet * CI test file updated & CI error fixed * avg_pool pad fix * Changed repo_url and doc formatting
Siju committed
-
- 22 May, 2019 1 commit
-
-
Yuta Hinokuma committed
-
- 16 May, 2019 1 commit
-
-
Mark Rogers committed
-
- 09 May, 2019 1 commit
-
-
* Add topi adaptive_pool * Use adaptive_pool to compute global_pool * Add relay adaptive pool2d * Fix lint * Fix typo * Minor change * Change support level to 10 * Add contrib * Remove global pool schedule * Add contrib module * Fix lint * Update doc * Update doc
Yao Wang committed
-
- 01 May, 2019 1 commit
-
-
* Fix PRelu layout in Relay * Fix cpplint * Add PRelu test case
Zhao Wu committed
-