1. 23 Aug, 2019 1 commit
  2. 08 Aug, 2019 1 commit
  3. 07 Aug, 2019 2 commits
  4. 02 Aug, 2019 1 commit
  5. 22 Jul, 2019 1 commit
    • 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
  6. 21 Jul, 2019 1 commit
  7. 18 Jul, 2019 1 commit
  8. 10 Jul, 2019 1 commit
  9. 06 Jul, 2019 1 commit
  10. 04 Jul, 2019 1 commit
  11. 02 Jul, 2019 1 commit
    • Add dockerfiles for the conda package builds (#3344) · 988ea2ac
      * First shot
      
      * Add dockerfile for CPU too
      
      * Finish the build infrastructure
      
      * Remove extra file
      
      * Comment out the Jenkinsfile section since it is not ready
      
      * Add missing license headers
      
      * Update to newer cudnn that anaconda packaged
      
      * Bump the build numbers for the newer cudnn
      
      * Bring back the toolchain option with a tweak for cuda
      
      * Cache some large packages in the docker and update to llvm 7.0.0
      
      * Merge all the python packages together
      
      * First fix for the conda cuda builds (again)
      
      * Use the tarball version of cudnn since tvm has trouble detecting the other one
      
      * Use llvm 8.0 from the numba packages
      
      * Also use llvm 8.0 for the cpu builds
      
      * Don't use the anaconda compiler for OS X
      
      * Enable Metal on OS X builds
      
      * Make sure to detect undefined variables in scripts
      
      * Fix build when not using cuda
      abergeron committed
  12. 30 Jun, 2019 1 commit
  13. 18 Jun, 2019 1 commit
  14. 13 Jun, 2019 1 commit
  15. 04 Jun, 2019 1 commit
  16. 31 May, 2019 1 commit
  17. 28 Apr, 2019 1 commit
  18. 25 Apr, 2019 1 commit
  19. 16 Apr, 2019 1 commit
  20. 08 Apr, 2019 1 commit
    • [HEADER] Add Header to Comply with ASF Release Policy (#2982) · cffb4fba
      * [HEADER] ASF header dir=include
      
      * [HEADER] ASF Header dir=src
      
      * [HEADER] ASF Header -dir=python
      
      * [HEADER] ASF header dir=topi
      
      * [HEADER] ASF Header dir=nnvm
      
      * [HEADER] ASF Header -dir=tutorials
      
      * [HEADER] ASF Header dir=tests
      
      * [HEADER] ASF Header -dir=docker
      
      * fix whitespace
      
      * [HEADER] ASF Header -dir=jvm
      
      * [HEADER] ASF Header -dir=web
      
      * [HEADER] ASF Header --dir=apps
      
      * [HEADER] ASF Header --dir=vta
      
      * [HEADER] ASF Header -dir=go
      
      * temp
      
      * [HEADER] ASF Header --dir=rust
      
      * [HEADER] Add ASF Header --dir=cmake
      
      * [HEADER] ASF Header --dir=docs
      
      * [HEADER] Header for Jenkinsfile
      
      * [HEADER] ASF Header to toml and md
      
      * [HEADER] ASF Header to gradle
      
      * Finalize rat cleanup
      
      * Fix permission
      
      * Fix java test
      
      * temporary remove nnvm onnx test
      Tianqi Chen committed
  21. 24 Mar, 2019 1 commit
  22. 23 Mar, 2019 1 commit
  23. 19 Mar, 2019 3 commits
  24. 15 Mar, 2019 1 commit
  25. 12 Mar, 2019 1 commit
  26. 04 Mar, 2019 1 commit
  27. 01 Mar, 2019 2 commits
    • Docker build script robustness (#2710) · 1342151e
      * [DOCKER] Make all install .sh scripts directly executable.
      
      * [DOCKER] Use curl -L consistently.
      
      Make the use of the curl -L option in docker build scripts consistent.
      
      * [DOCKER] Drop use of --force-yes
      
      The --force-yes option is generally not recommend, it can leave
      systems in an undefined state.  The use of --allow-* options is
      preferred.  In this particular case the --force-yes option appears to
      serve no purpose.  Dropping it.
      
      * [DOCKER] Drop superflous repeated apt-get update.
      
      The "apt-get update && apt-get install" idiom is necessary and
      specific to Dockerfile.  In shell the repeated apt-get update is
      superflous.  Drop the duplicates.
      
      * [DOCKER] Robustness -e -u -o pipefail
      
      The install scripts used to construct docker environments do not, in
      general, propagate errors.  Some of the scripts use adhoc &&
      directives to chain together short sequences of commands but there are
      numerous failure modes which are silently ignored.  This patch puts in
      place some consistent, basic, shell error trapping across all of the
      install scripts.
      
      Note this is a step forward towards more robust scripts but it is not
      a complete solution.
      
      * [DOCKER] Shallow clone.
      
      Use shallow clone to reduce bandwidth requirements of repeated docker
      (re)-builds.
      
      * [DOCKER] Use clone --branch rather than clone then checkout
      
      Use the git clone --branch idiom rather than git clone && git
      checkout.  This paves the way for using --depth=1
      Marcus Shawcroft committed
  28. 28 Feb, 2019 1 commit
    • Docker updates (#2702) · 78c383e5
      * [DOCKER] Switch from yes|apt-get to apt-get -y
      
      The yes | apt-get idom guarantees that the 'yes' process always exists
      with exit code 141 (pipe broken).  This is fine while the script
      generally ignores failures but won't work when the script behaviour is
      tightened to robustly catch errors.
      
      * [DOCKER] Turn down the wget/curl volume
      Marcus Shawcroft committed
  29. 02 Feb, 2019 2 commits
    • [Relay][Frontend] Caffe2 Support (#2507) · b3b3d28a
      * [Relay][Frontend] Add Caffe2 Support
      
      * [Relay][Frontend] Add Caffe2 Support (fix unsed import)
      
      * [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)
      
      * [Relay][Frontend] Add Caffe2 Support (fix model install and reflect code reviews)
      
      * [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)
      
      * [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)
      
      * [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)
      
      * [Relay][Frontend] Add Caffe2 Support (fix caffe2 frontend import)
      
      * [Relay][Frontend] Add Caffe2 Support (rename function name in test_forward)
      
      * [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)
      
      * [Relay][Frontend] Add Caffe2 Support (fix caffe2 model import)
      
      * [Doc] Caffe2 frontend tutorial
      
      * [Doc] Caffe2 frontend tutorial
      
      * [Doc] Caffe2 frontend tutorial
      
      * [Relay][Frontend] Add Caffe2 Support (remove unsed file)
      Hiroyuki Makino committed
  30. 01 Feb, 2019 1 commit
  31. 30 Jan, 2019 1 commit
  32. 19 Jan, 2019 1 commit
  33. 15 Jan, 2019 1 commit
  34. 11 Jan, 2019 1 commit
  35. 02 Dec, 2018 1 commit