1. 21 Aug, 2017 2 commits
  2. 20 Aug, 2017 6 commits
  3. 19 Aug, 2017 1 commit
  4. 18 Aug, 2017 2 commits
  5. 17 Aug, 2017 6 commits
  6. 16 Aug, 2017 3 commits
  7. 15 Aug, 2017 11 commits
  8. 14 Aug, 2017 5 commits
  9. 13 Aug, 2017 3 commits
    • [WIP] C++ topi contributions (#312) · f08de2b6
      * [WIP] C++ topi contributions
      
      Summary:
      This diff implements C++ topi contributions for:
        - relu with parametrix threshold
        - pad with generic padBefore / padAfter specification
        - matmult with transposes
        - conv2d_nchw, conv2d_hwcn with runtime constant padding and strides
        - depthwise_conv2d_nchw with runtime constant padding and strides
        - group_conv2d_ngchw with runtime constant padding and strides
        - broadcast_to a broadcastable shape
        - broadcast_bop where bop is an usual binary op (+ - * / %)
      
      Convolution padding is implemented using the pad operation.
      To avoid extra memory consumption, it is generally recommended to inline the padding with the autoinliner.
      Unfortunately in its current form the elemwise checks are too restrictive to allow inlining.
      So this diff also proposes an extension to LHS injective (i.e. no reduction axis in the current IR design)
      
      Test Plan:
      Tested in C++ testsuite in a separate repository, I am looking for suggestions to quickly spin up some tests for tvm.
      
      Reviewers: tqchen
      
      Subscribers:
      
      Tasks:
      
      Tags:
      
      Blame Revision:
      
      * Review + Lint + GSG C++
      Nicolas Vasilache committed
  10. 12 Aug, 2017 1 commit