Граф коммитов

55 Коммитов

Автор SHA1 Сообщение Дата
Alexander Pivovarov 579e96da44 Update tflite schema version to 1.13 (#3356) 2019-06-13 08:52:25 -07:00
Jared Roesch 58e15fe10f Bump ONNX version (#3286) 2019-06-04 08:42:46 -07:00
Tianqi Chen a184b32082
Jekyll (#3262) 2019-05-30 21:32:33 -07:00
Tianqi Chen fbcb67afdc
[CI] Add file type check (#3116) 2019-04-28 12:04:19 -07:00
Liang-Chi Hsieh cdc9e85c06 Use bridge network and expose port on macOS when launch docker image (#3086) 2019-04-25 10:49:50 -07:00
tkat0 0f8686e819 [DOC] Add Android Tutorial (#2977)
* fix APP_STL for latest android ndk

* add vulkan sdk for tutorial

* add android tutorial

* fix of invalid input layer name

* update relay build opt_level 1 -> 3
2019-04-15 18:11:51 -07:00
Tianqi Chen cffb4fba03
[HEADER] Add Header to Comply with ASF Release Policy (#2982)
* [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
2019-04-07 21:14:02 -07:00
Nick Hynes d04c41c4f1 Use version invariant rustfmt (#2886) 2019-03-24 10:42:59 -07:00
Marcus Shawcroft 8a7f41ce1b [DOCKER] Pin flatbuffers checkout to the last release tag (#2823). (#2879) 2019-03-22 18:16:39 -07:00
Nick Hynes 340678ded2 Pin rust version used to compile tools (#2852) 2019-03-19 11:34:24 -07:00
Tianqi Chen a1c2fd1b0b
[DOCKER] Update ci-gpu to include NNPack (#2846) 2019-03-18 23:03:00 -07:00
Marcus Shawcroft af4efdbfc1 [DOCKER] Revert git shallow clone change. (#2841)
This patch reverts one of my earlier patches (squashed in #2710) to
reduce bandwidth requirements of git clone, in this particular case we
are checking out a specific hash rather than a tag or branch name. The
--branch option to git clone permits tags or branches but does not
permit a specific hash.
2019-03-18 20:20:23 -07:00
Marcus Shawcroft 48780c08f8 [DOCKER] Fix git clone failure. (#2816)
git clone --branch=xxx won't take a hash, switch from the hash to the
tag that represents that hash.
2019-03-14 18:33:47 -07:00
Tianqi Chen 5e3ceaa073
[DOCKER] Update docker protocol (#2793) 2019-03-12 14:34:34 -07:00
Marcus Shawcroft 115da9d5f5 [DOCKER] Pin pylint==1.9.4 (#2727) 2019-03-04 15:21:13 -08:00
Marcus Shawcroft 1342151e58 Docker build script robustness (#2710)
* [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
2019-03-01 10:12:24 -08:00
Marcus Shawcroft cab5af2687 Pin pylint version 2.2.2 (#2698) 2019-02-28 18:35:01 -08:00
Marcus Shawcroft 78c383e528 Docker updates (#2702)
* [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
2019-02-28 10:23:59 -08:00
Hiroyuki Makino b3b3d28a18 [Relay][Frontend] Caffe2 Support (#2507)
* [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)
2019-02-01 22:31:20 -08:00
Tianqi Chen e012f819b1
[CI] Enable ANTLR in CPU env (#2548) 2019-02-01 22:28:39 -08:00
Nick Hynes b6ae3e15cc Update rustc (#2524) 2019-01-31 16:54:44 -08:00
Yizhi Liu 881a78b3d6 [Relay][Frontend] CoreML Support (#2476)
* [Relay][Frontend] Add CoreML Support

* pip install six in CI

* remove triggering nnvm coreml test

* set opt_level=2 for nnvm coreml test case
2019-01-29 16:19:36 -08:00
Yao Wang 5194da65bf Add gluoncv installation (#2464) 2019-01-19 10:02:57 -08:00
Tianqi Chen 9e9cda54cb
[DOCKER] add ci tag, upgrade gpu-ci (#2438) 2019-01-15 14:29:13 -08:00
Siva b1c7869fe0 [TFLite] CI recipe. (#2371)
* [TFLite] CI recipe.

* 	* Custom bake tflite package and install.
2019-01-10 20:49:12 -08:00
Josh Pollock d3bc59d20b [Relay][RFC] Relay IR Text Format (#1781) 2018-12-02 10:35:01 -08:00
Tianqi Chen 1a9df7be98
[DOCKER] inheritate javahome (#2210) 2018-11-30 19:43:00 -08:00
Josh Pollock d7324c6e48 dockerfile cpu changes (#2191) 2018-11-29 10:01:58 -08:00
Andrew Tulloch 3ee13fc5f2 Add NNPACK to CI (#2085) 2018-11-09 21:08:04 -08:00
Jared Roesch 86f4f1b790 Add attrs package (#2025) 2018-10-28 18:27:59 -07:00
Siva 26e3aa19c8 [DOCKER][GOLANG] fix golang version. (#2023) 2018-10-28 09:43:06 -07:00
Tianqi Chen 74314d2744
[DOCKER] temporary revert cuda version to cuda8 (#2021) 2018-10-27 21:03:08 -07:00
Josh Pollock 975d0d44cf [Relay] Parser CI dependencies and build rules (#1965) 2018-10-23 10:55:24 -07:00
Nick Hynes f2b30f9e45 Update SGX example (#1933) 2018-10-19 09:34:18 -07:00
Nick Hynes 43525f6668 [Rust] Add rust runtime to CI (#1851) 2018-10-11 22:19:17 -07:00
Nick Hynes 3ff86009b4 Update SGX example (#1879) 2018-10-10 21:53:16 -07:00
nhynes 90159022f7 Install rust for all users (#1856) 2018-10-06 22:17:50 -07:00
nhynes b313c02136 [Rust] Update rust install in dockerfile (#1855)
* Update rust docker

* minor edit for consistency
2018-10-06 15:16:38 -07:00
Siva 6330797db9 [DOCKER][GOLANG] Fix golang compiler version to 0.10 (#1848) 2018-10-06 10:28:06 -07:00
Tianqi Chen 5d3637f506
[DOCKER] Fix CI script (#1826) 2018-10-04 22:54:31 -07:00
nhynes ff76b462c8 Add SGX to docker (#1822) 2018-10-04 21:44:05 -07:00
Inon S 6d037db73f Added Dockerfile demonstrating OpenCL & OpenGL installation (#1770) 2018-09-28 16:50:48 -07:00
Siva e8d6d9aa70 [DOCKER] CUDA upgrade to 9.0 to acommodate tensorflow-gpu (1.10.0). (#1761) 2018-09-24 20:12:29 -07:00
Siva 5ed52a5ff1 [DOCKER] Golang CI recipe. (#1759) 2018-09-22 21:25:06 -07:00
Sergey Mironov 3d0be3b0e3 Add demo_android Dockerfile (#1646) 2018-09-14 09:26:34 -07:00
Josh Pollock fb252448e1 adds antlr4 to python3 package list (#1560) 2018-08-05 12:57:08 -07:00
Lianmin Zheng bcc1765869 Revert "update dependency (#1495)" (#1499)
This reverts commit f1f30c4c4ab5e8a47a0d76c8cd2c5344c0a9096a.
2018-07-26 16:56:41 -07:00
Lianmin Zheng 0321fc6126 update dependency (#1495) 2018-07-26 12:14:47 -07:00
Josh Pollock 4de9011345 add orderedset to Ubuntu python package list (#1491) 2018-07-25 19:51:41 -07:00
Tianqi Chen 84eea5727d Update VTA schedule (#1464) 2018-07-20 11:48:19 -07:00