1. 28 Oct, 2019 4 commits
  2. 27 Oct, 2019 5 commits
  3. 25 Oct, 2019 3 commits
  4. 24 Oct, 2019 12 commits
  5. 23 Oct, 2019 3 commits
  6. 22 Oct, 2019 5 commits
  7. 21 Oct, 2019 6 commits
    • [Relay][QNN] Add unit test for int8 (#4159) · 6f9d028b
      * [bugfix][codegen] fix casting bug in llvm codegen
      
      * update example
      
      * retrigger ci
      
      * check llvm version
      Zhi committed
    • [Relay][Pass] Count MAC for BatchMatMul (#4157) · e0d286a1
      * count MAC for BatchMatMul
      
      * update doc
      Haichen Shen committed
    • Fix missspelling (#4166) · d660e514
      FIX "After connecting he usb" with "After connecting the usb"
      Monkeyking committed
    • Add support for quantized multiply to Relay (#4141) · e5835425
      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
    • [REFACTOR][NODE][RUNTIME] Move Node to the new Object protocol. (#4161) · 7895adb2
      * [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
  8. 20 Oct, 2019 2 commits