1. 08 Nov, 2017 3 commits
  2. 07 Nov, 2017 1 commit
  3. 06 Nov, 2017 2 commits
  4. 03 Nov, 2017 2 commits
  5. 02 Nov, 2017 1 commit
  6. 01 Nov, 2017 1 commit
  7. 30 Oct, 2017 1 commit
  8. 27 Oct, 2017 1 commit
  9. 26 Oct, 2017 4 commits
  10. 25 Oct, 2017 1 commit
  11. 24 Oct, 2017 3 commits
  12. 23 Oct, 2017 1 commit
  13. 22 Oct, 2017 3 commits
  14. 20 Oct, 2017 1 commit
  15. 19 Oct, 2017 1 commit
  16. 17 Oct, 2017 2 commits
  17. 16 Oct, 2017 3 commits
  18. 15 Oct, 2017 2 commits
  19. 14 Oct, 2017 3 commits
  20. 13 Oct, 2017 4 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
    • added support for rocm gpu autodetect (#549) · ed783689
      * added support for rocm gpu autodetect
      
      * changed type casting from old style to static_cast
      
      * fixed code to generate gfx specific code object
      
      * fixed namespaces
      Aditya Atluri committed
    • add msvc in cc (#531) · 87c929f5
      Hu Shiwen committed
    • Add rocm target to topi tests (#548) · 85c545c7
      * add masahi to contributors
      
      * enable rocm target in topi tests
      masahi committed