1. 02 Sep, 2019 4 commits
  2. 01 Sep, 2019 6 commits
  3. 31 Aug, 2019 3 commits
  4. 30 Aug, 2019 3 commits
  5. 29 Aug, 2019 9 commits
  6. 28 Aug, 2019 3 commits
  7. 27 Aug, 2019 1 commit
  8. 26 Aug, 2019 3 commits
    • Fix inconsistent python/cpp API behavior for if_then_else, power (#3829) · 283b0c3f
      * fix inconsistent python/cpp APIs for if_then_else
      
      * fix error message
      
      * fix power consistency
      
      * fix
      
      * fix bug
      
      * add test
      Xingjian Shi committed
    • [VTA][TSIM] Introduce Virtual Memory for TSIM Driver (#3686) · 92b6ca71
      * initial virtual memory;
      
      * initial integration;
      
      * include the header file in cmake;
      
      * implement allocation with virtual to logical address mapping;
      
      * virtual memory for tsim_driver;
      
      * implement the missing memory release function;
      
      * readability improvement;
      
      * readability improvement;
      
      * address review comments;
      
      * improved robustness in virtual memory allocation;
      
      * remove VTA_TSIM_USE_VIRTUAL_MEMORY macro and use virtual memory for tsim by default;
      
      * link tvm against vta library;
      
      * merge with master
      
      * build virtual memory system without linking tvm against vta;
      
      * minor change;
      
      * reuse VTA_PAGE_BYTES;
      
      * using DRAM class from sim_driver as VirtualMemoryManager;
      
      * satisfy linter;
      
      * add comments in code;
      
      * undo changes to Makefile
      
      * undo changes to Makefile
      
      * retrigger ci;
      
      * retrigger ci;
      
      * directly call into VirtualMemoryManager::Global()
      Liangfu Chen committed
  9. 24 Aug, 2019 1 commit
  10. 23 Aug, 2019 5 commits
  11. 22 Aug, 2019 2 commits
    • [TVM] Fix warnings (#3817) · ac474603
      transform.h:118:3: warning: 'const' type qualifier on return type has no
      effect
      attrs.h:68:3: note: expanded from macro 'TVM_DECLARE_ATTRS'
      node.h:244:3: note: expanded from macro 'TVM_DECLARE_NODE_TYPE_INFO'
      
      transform.h:95:3: warning: extra ';' after member function definition
      attrs.h:68:62: note: expanded from macro 'TVM_DECLARE_ATTRS'
      lixiaoquan committed
    • [TOPI][Relay][TensorFlow] Add OneHot operator (#3781) · 554df211
      * Add one-hot to Relay
      
      * topi implementation
      
      * Working
      
      * add topi test
      
      * Add TF test
      
      * Fix check
      
      * fix linting issues
      
      * fix documentation
      
      * Fix documentation
      
      * Add support for on_value, off_value, axis, dtype
      
      * Add full support for axis
      
      * Fix compute and update test_forward
      
      * Move on_value and off_value to inputs
      
      * Add topi test
      
      * Update tests
      
      * Update docs
      
      * Fix style
      
      * re-enable tests
      
      * Add one_hot to mxnet converter
      Jon Soifer committed