- 28 Oct, 2019 1 commit
-
-
Logan Weber committed
-
- 27 Oct, 2019 5 commits
-
-
Tianqi Chen committed
-
* app init push * fix on readme * change name, add bit serial explanantion * rm serialLoadMM, change doc * syntax change for readme * add parallel test functionality * fix readme * add python doc * syntax * init commit * fix empty line * fix typo
Benjamin Tu committed -
* Add support for op Where * Update impl version
Jon Soifer committed -
* Add support for attaching params * Fix types * Fix test
Jared Roesch committed -
* add checkpoint annotation for checkpointing memory optimization * add alpha-equivalence checkpoint test and fix gradient type issue * fix build issues * ignore checkpoint annotation when checking missing gradients * refactor, fix checkpoint compute for tuple and add tests
Altan Haan committed
-
- 25 Oct, 2019 3 commits
-
-
Zhi committed
-
* save * lint
雾雨魔理沙 committed -
Animesh Jain committed
-
- 24 Oct, 2019 12 commits
-
-
Tianqi Chen committed
-
* [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 -
* add tensor core support * avoid memory bank conflict * fix thread sync & better performance * better performance * add schedule test for conv2d * extend into BatchMatMul * support config fragment shape and layout using intrinsic * add TensorCore tutorial * add int support and fix lint * address comment * add 32*16*8 TensorCore test * fix wmma include logic
Siyuan Feng committed -
* support conv2d HWCN in AutoTVM and Relay * fix lint * fix comments and unit tests
Cody Hao Yu committed -
* save lint * address reviewer comment
雾雨魔理沙 committed -
Ina Dobreva committed
-
Zhi committed
-
* Fix example code in comment of tvm.build_module.build() * Update build_module.py
optima2005 committed -
Yao Wang committed
-
* Support setting path to ANTLR jar * Update comment
Jon Soifer committed -
This reverts commit 6f9d028b.
Tianqi Chen committed -
* Start to update TF frontend docs * Add rst * Remove markdown * Update wording * Resolve comments
Jon Soifer committed
-
- 23 Oct, 2019 3 commits
-
-
Bjarke Hammersholt Roune committed
-
* [rpc] use callback func to do send & recv. don't get fd from sock as it is deprecated in java * fix java build * fix min/max macro define in windows * keep the old rpc setup for py * add doc for CallbackChannel
Yizhi Liu committed -
Wei Chen committed
-
- 22 Oct, 2019 5 commits
-
-
* [Relay][Frontend][TF] Fix Size operator * Uncomment tests
Jon Soifer committed -
mbarrett97 committed
-
Cody Hao Yu committed
-
Altan Haan committed
-
Zhi committed
-
- 21 Oct, 2019 6 commits
-
-
* [bugfix][codegen] fix casting bug in llvm codegen * update example * retrigger ci * check llvm version
Zhi committed -
* count MAC for BatchMatMul * update doc
Haichen Shen committed -
FIX "After connecting he usb" with "After connecting the usb"
Monkeyking committed -
This patch adds multiply operator for quantized tensors. The details of the quantized multiplication are outlined in the code. This builds on pull request 3927 and includes the changes Animesh mentions in the comments on that request. Change-Id: I555715b53d0266a91d5c03dc3dfe8fc31e7ce4e1
ekalda committed -
Tianqi Chen committed
-
* [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
-
- 20 Oct, 2019 2 commits
-
-
Haichen Shen committed
-
We think it will reduce the confusion with the meaning. https://discuss.tvm.ai/t/discuss-consider-rename-vm-datatype/4339
Wei Chen committed
-
- 18 Oct, 2019 3 commits
-
-
Tianqi Chen committed
-
* Add LiftIfThenElse pass * Add more comments * Rename and refactor * Add description for internal data structure * Rename a test * Minor change * Address comments * Improve update_for
Yao Wang committed -
Animesh Jain committed
-