1. 22 Jul, 2019 2 commits
    • 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 5 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
    • Fix pylint issue in vta/python/vta/top/graphpack.py (#3519) · b10dda69
      This appears in linting using the docker scripts. I'm not sure
      why this isn't failing in the standard CI for TVM and it might
      be that the docker images haven't been updated in the CI system.
      
      python3 -m pylint vta/python/vta --rcfile=/workspace/tests/lint/pylintrc
      Using config file /workspace/tests/lint/pylintrc
      ************* Module vta.top.graphpack
      C:131, 4: Missing method docstring (missing-docstring)
      Ramana Radhakrishnan committed