1. 30 Apr, 2020 3 commits
  2. 29 Apr, 2020 7 commits
  3. 28 Apr, 2020 3 commits
  4. 27 Apr, 2020 5 commits
  5. 26 Apr, 2020 2 commits
  6. 25 Apr, 2020 6 commits
  7. 24 Apr, 2020 7 commits
  8. 23 Apr, 2020 7 commits
    • [RFC] Pytest environment improvements (#5421) · e149db28
      * [RFC] Pass pytest options globally.
      
      In many places having a global pytest flag is useful . For me with the
      build and test of tvm , I would like to be able to globally pass in
      pytest options as part of development flow or CI flows where one would
      like to measure other things regularly that need measurements including
      pytest coverage data that I would like to experiment with across the stack.
      
      This has been achieved with an additional setup-pytest-env.sh file in
      tests/scripts rather than putting in something in every single task test
      script and something I would like to avoid.
      
      This now means the -v option to pytest is superfluous. I did consider
      having a pytest.ini file but that doesn't allow me to pass any old
      environment variable in and this seems to be the compromise.
      
      * Improve other use case documentation
      
      * Rationalize pytest environment.
      
      * Remove the setting from docker/with_same_user.
      * Take the opportunity to migrate common PYTHONPATH and
      TVM_PATH into the common environment setting.
      
      * Fixup vta fsim
      
      * Be more explicit with common PYTHONPATH
      
      * Fix python path for task_python_vta_fsim.sh properly
      
      * Fix nit in documentation.
      Ramana Radhakrishnan committed
    • [BYOC] Use Non-Recursive Visitor/Mutator (#5410) · ba876046
      * Non-Recursive AnnotatedTarget and MergeAnnotation
      
      * Non-Recursive AnnotatedRegionSet and RegionMerger
      Cody Yu committed
    • [DOCS] Migrate some markdowns to rst, fix sphinx3 warnings (#5416) · 1f6c498b
      * [DOCS] Migrate some markdowns to rst, fix sphinx3 warnings
      
      * Add note block
      Tianqi Chen committed
    • [CI] Migrate Tensorflow and Tensorflow lite in CI to 2.1.0 (#5392) · d81a4fa1
      * Migrate Tensorflow and TFLite in the CI up to 1.15.2
      
      The latest stable version of Tensorflow and Tensorflow lite
      in the 1.x series is 1.15.2. The tflite frontend is receiving
      support for versions of tflite > 1.14 but there is no consistent
      testing.
      
      There are 2 failures already in the source base with tf 1.15
      and I'm concerned this will just get exacerbated over time
      if we don't have CI picking this up and I view this as a stepping
      stone towards stepping CI to TF2.x.
      
      The test failures that I have commented will get issues raised
      for them as issues to be fixed.
      
      * Comment out run of qnn_mobilenet_v3_net
      
      This is another test that fails with TFlite 1.15.2
      
      * Skip the qnn_mobilenet_v3 test in the pytest fashion.
      
      * Switch docker versions to support Tensorflow 2.1.0
      
      * Fix up pytest imports and usage.
      
      * Skip these tests currently for Tensorflow 2.1.0
      Ramana Radhakrishnan committed
    • [cuDNN] Add cuDNN grouped convolutions support (#5319) · 9c12ec81
      Signed-off-by: Wei Pan <weip@nvidia.com>
      Wei Pan committed