1. 11 Jan, 2018 1 commit
  2. 10 Jan, 2018 1 commit
  3. 08 Jan, 2018 1 commit
  4. 07 Jan, 2018 1 commit
    • [SCHEDULE]Improve bound deduce for loop partition (#743) (#755) · 9d6dbe34
      * [SCHEDULE]enable partition const loop with build flag (#719)
      
          * enable partition loop with build flag
      
          * add a testcase, and modify LoopPartition related cases
      
      *     * add document for split_const_loop
      
      * [IRbuild]Support automatically Name Loop Variable in IRBuilder (#719)
      
          * add idx_num in class
      
      * using typical index [i, j, k] first, then i_suffix
      
      * keep inputs names
      
      * fix lint
      
      * improve comment of name
      
      * fix lint
      
      * [SCHEDULE]Improve bound deduce for loop partition (#743)
      
          * add divided checking when deducing
      
          * related testcase
      
      * fix
      
      * * transform LE and GE first
      * remove is_equal
      * modify testcase for edge cases checking
      
      * * fix comment
      
      * * fix lint
      
      * * apply transformation form LT -> LE, GT -> GE
      
      * * fix lint
      
      * simplify code and testcase
      
      * add negative co-efficient case
      
      * More complicated cases
      
      * add testcase
      
      * simplify testcase
      
      * comment case for now
      
      * fix testcase
      xqdan committed
  5. 03 Jan, 2018 2 commits
  6. 02 Jan, 2018 1 commit
  7. 29 Dec, 2017 2 commits
  8. 27 Dec, 2017 2 commits
  9. 26 Dec, 2017 1 commit
  10. 24 Dec, 2017 2 commits
  11. 23 Dec, 2017 2 commits
  12. 19 Dec, 2017 1 commit
  13. 17 Dec, 2017 1 commit
  14. 05 Dec, 2017 1 commit
    • Port build_module.py to C++ (#667) · 17e7e3d5
      * Port build_module.py to C++
      
      * Fix lint errors
      
      * Fix more lint errors
      
      * Fix more lint errors
      
      * Fix more lint errors
      
      * Fix build error
      
      * Implemented style fixes
      
      * Fix lint errors
      
      * Added function to construct target from string
      lower now returns array
      
      * Fix lint error
      
      * Implemented review changes - style & Target options -> std::vector
      
      * Fixed lint, argument alignment and added unit test
      
      * Changed test to target LLVM, fixed sign compare warnings
      
      * Reverted unit test to CUDA, changed Jenkinsfile to enable GPU for C++ tests
      
      * Slight change to Jenkinsfile
      
      * Changed build_module test from CUDA to LLVM
      
      * Added function var() to construct a Var instance.
      Changed implementation of LLVMEnabled()
      
      * Reverted Jenkinsfile
      alex-weaver committed
  15. 04 Dec, 2017 2 commits
  16. 01 Dec, 2017 1 commit
  17. 30 Nov, 2017 2 commits
  18. 28 Nov, 2017 1 commit
  19. 21 Nov, 2017 2 commits
  20. 14 Nov, 2017 1 commit
  21. 13 Nov, 2017 1 commit
  22. 12 Nov, 2017 1 commit
  23. 03 Nov, 2017 1 commit
  24. 02 Nov, 2017 1 commit
  25. 22 Oct, 2017 2 commits
  26. 19 Oct, 2017 1 commit
  27. 17 Oct, 2017 1 commit
  28. 14 Oct, 2017 1 commit
  29. 13 Oct, 2017 2 commits
    • Add same_as to NodeBase (#550) · fde9b570
      * Add same_as to NodeBase
      
      1. Most class inherited from NodeBase(Schedule, Stage, etc) still have
      the convenience of using '==' for object identity. And this is the right
      behavior for non-Expr classes.
      2. subclasses of ExprOp now create EQ expression when '==' is used.
      
      `__nonzero__` and `__bool__` in EQ and NE is a comprise that in some cases
      object identity semantics is still useful, like in unit test. For instance:
      ````
      assert a == b
      ````
      
      "a == b" will create EQ expression, assert then calls `__nonzero__` of the
      result expression. `Expr.__nonzero__` throws exception since it prohibits
      evaluating IR expression.
      
      More complex case like:
      ````
      assert a in b # b is dict
      ````
      
      it will call `__eq__` on a and all keys of b, then `__bool__` on the result
      expression. This could not easily be done by same_as.
      
      * Retain __hash__ from NodeBase in Python3
      Wei Chen committed
    • add msvc in cc (#531) · 87c929f5
      Hu Shiwen committed
  30. 12 Oct, 2017 1 commit