1. 22 Apr, 2020 6 commits
  2. 21 Apr, 2020 8 commits
  3. 20 Apr, 2020 3 commits
  4. 19 Apr, 2020 4 commits
  5. 18 Apr, 2020 3 commits
  6. 17 Apr, 2020 6 commits
  7. 16 Apr, 2020 6 commits
  8. 15 Apr, 2020 4 commits
    • [DOCS] Bring relay docs to the top-level flat view (#5343) · cc8cacb1
      - Changes most of the relay docs to use autosummary.
      - Bring relay API docs to the top-level flat view for easier discovery
      - Removed a few cases of re-exports.
      Tianqi Chen committed
    • [Tutorial, QNN] Add tutorial for loading quantized PyTorch model (#5321) · 3d18adf1
      * add pytorch tutorial code and doc stub
      
      * add more docs
      
      * formatting, more docs
      
      * typo fix
      
      * try make sphinx happy
      
      * add performance section
      
      * type and nit fix
      
      * format fix
      masahi committed
    • [BYOC] Prevent duplicate outputs in subgraph Tuple (#5320) · 09eb5082
      * Fix duplicate output in partitiongraph
      
      * Add test case
      
      * Fix test_annotated_regions with duplicate compiler_end outputs
      
      * Revert "Fix duplicate output in partitiongraph"
      
      This reverts commit e1f8ef3f4ca5b2aaa31ace6fa968bb50e5e4d1fa.
      
      * Prevent duplicate outputs in Tuple in PartitionGraph
      
      * Fix lint
      
      * Add another test case for when regions are merged, and when TupleGetItem was duplicated
      
      * Pull GetFunctionOutput out of branch, improve description of GetFunctionOutput
      
      * Use std::move for GetFunctionOutput. Fix typo with testcase name
      
      * Use tvm.transform.Sequential
      Trevor Morris committed
    • [TIR] Remove ProducerConsumer and AllocateNode::new_expr (#5333) · e8138f7d
      * [TIR] Remove ProducerConsumer and AllocateNode::new_expr
      
      This PR removes two legacy IR parts in TIR that are deprecated.
      
      ProducerConsumer node only serves as a hint markup and may no longer be
      informative after extensive transformations in the pass.
      If necessary, we can add related info via AttrStmt.
      
      The new_expr field in the AllocateNode is deprecated since it can just be
      replaced by a LetStmt.
      
      - Remove dependencies of passes on ProducerConsumer.
      - Remove ProducerConsumer from the IR.
      - Remove the deprecated fields (new_expr, free_function) from AllocateNode.
      
      * Fix additional testcases
      Tianqi Chen committed