1. 22 Jul, 2019 3 commits
    • Add support for Tflite operator SPLIT (#3520) · 19eb829e
      * [RFC] Initial support for Tflite operator SPLIT
      
      This patch adds initial support for the tflite operator split. However
      I am not yet sure how to handle the axis parameter for the split
      operator and support it in the test infrastructure. Putting this up for
      an initial review and comment.
      
      The split operator in tflite according to
      https://www.tensorflow.org/lite/guide/ops_compatibility
      
      appears to take num_or_size_split as a 0D tensor.
      
      I also note that tflite.split is one of the few operators that returns
      multiple outputs and thus the helper routines in the tests needed some
      massaging to make this work.
      
      @apivarov , could you please review this ?
      
      Thanks,
      Ramana
      
      * Fix the axis parameter
      
      Add more tests
      
      * Address review comments
      
      * Try out frozen_gene's suggestion
      
      * Handle split of 1 element
      
      * int32 is only supported in tflite 1.14, let's check that version here.
      
      * Keep this at python3.5
      
      * Add packaging as a python package to be installed
      Ramana Radhakrishnan committed
    • Update Jenkinsfile · 443b5b46
      Tianqi Chen committed
    • [VTA] Runtime refactor to allow for non-shared memory FPGAs (e.g. F1) (#3554) · 9d64d321
      * updated runtime to support non-shared memory FPGAs for instruction and micro-op kernels
      
      * adding driver-defined memcpy function to handle F1 cases
      
      * refactor to include flush/invalidate in memcpy driver function
      
      * update tsim driver
      
      * bug fixes
      
      * cleanup
      
      * pre-allocate fpga readable buffers to improve perf
      
      * fix
      
      * remove instruction stream address rewrite pass for micro op kernels
      
      * fix:
      
      * white spaces
      
      * fix lint
      
      * avoid signed/unsigned compilation warning
      
      * avoid signed/unsigned compilation warning
      
      * fix
      
      * fix
      
      * addressing comments
      
      * whitespace
      
      * moving flush/invalidate out of memmove
      
      * clearnup
      
      * fix
      
      * cosmetic
      
      * rename API
      
      * comment fix
      Thierry Moreau committed
  2. 21 Jul, 2019 2 commits
  3. 20 Jul, 2019 1 commit
  4. 19 Jul, 2019 8 commits
  5. 18 Jul, 2019 7 commits
  6. 17 Jul, 2019 6 commits
  7. 16 Jul, 2019 2 commits
  8. 15 Jul, 2019 1 commit
  9. 14 Jul, 2019 1 commit
  10. 13 Jul, 2019 1 commit
  11. 12 Jul, 2019 2 commits
  12. 11 Jul, 2019 2 commits
  13. 10 Jul, 2019 4 commits
    • init (#3476) · 273c0280
      lint
      
      update
      
      address comment
      
      comment out breaking test
      雾雨魔理沙 committed
    • [Relay][RFC] Implement type checking for Any (#3221) · 3fb84e2b
      * Implement type checking for Any
      
      Remove code generation related changes
      
      Remove compile changes
      
      Remove more
      
      Remove unification hack
      
      Add some code back that was needed, and clean up test
      
      Refactor test cases
      
      WIP
      
      Implement TypeHint AST
      
      Add test case which should fail
      
      Remove unification changes, and fix bug with let rec
      
      Restore unification for shapes
      
      Improve error reporting while debugging
      
      All examples type check
      
      All examples type check
      
      WIP
      
      First version that works with hints, needs clean up
      
      Remove dead code
      
      Tweaks
      
      Remove type hint
      
      Remove unecessary type hint stuff
      
      Remove more type hints
      
      Clean up
      
      Expose Any expression node
      
      Address CR
      
      Fix
      
      Fix solver
      
      Kill unecessary code
      
      Fix
      
      PyLint
      
      Fix
      
      Relocate loops
      
      Fix license and test
      
      Lint again
      
      Lint again
      
      Fix loops
      
      Fix docstring
      
      Fix template error
      
      Fix compiler issue
      
      Fix compile err
      
      Remove more runtime changes
      
      Restore buffer
      
      Fix segfault
      
      Fix
      
      Fix arange
      
      * Address feedback
      
      * Fix typo
      
      * Fix arange
      
      * Fix op level3
      
      * Fix issue with Python wrapper
      Jared Roesch committed