- 12 May, 2018 1 commit
-
-
Yao Wang committed
-
- 10 Apr, 2018 1 commit
-
-
nhynes committed
-
- 05 Apr, 2018 1 commit
-
-
* [RPC] Refactor, introduce tracker * [RPC] Change RPC hand shake convention, always get remote key. * fix lint
Tianqi Chen committed
-
- 29 Mar, 2018 1 commit
-
-
Pariksheet Pinjari committed
-
- 18 Feb, 2018 1 commit
-
-
Zhixun Tan committed
-
- 02 Feb, 2018 1 commit
-
-
* [BACKEND] Vulkan Runtime and SPIRV Codegen * fix doc
Tianqi Chen committed
-
- 31 Jan, 2018 1 commit
-
-
Tianqi Chen committed
-
- 28 Jan, 2018 2 commits
-
-
* Ported injective schedules to C++. Added some elementwise ops. * Fix lint errors * Added reduction ops and schedules * Fix lint errors * Fix lint errors * Fix lint errors * Added transform ops * Fix lint errors * Fix lint errors * Added softmax, log_softmax, leaky_relu and flatten ops. Fixed issue where TVM_DECLARE_INTRIN_UNARY used the PureExtern flag instead of PureIntrinsic. Added softmax CUDA schedule. * Fix lint * Fix lint * Added binary_dense, batch_norm_inference, dense, dilate, scale_shift_*, global_pool and pool ops. Extended pad to allow specifying pad_value. Fixed issue where pad would throw if padding was zero in all dimensions. * Fix lint * Fix lint * Added CUDA schedules for dense, pool and global_pool * Added extern schedules for generic and CUDA * Fix lint * Added x86 binary schedules * Fix lint * Added rocm dense schedule. Added rocBLAS and cuBLAS support to dense ops * Added pow ops. Added x86 default and injective schedules * Fix lint * Fix lint * Fix lint * Fix lint * Fix lint * Fix indent * Removed schedules directory * Changed left_shift, right_shift to operators. Changed pad_value in pad() to remove pointer usage * Fixed usage of pad in nn/pooling.h. Fixed declaration of operator>> * Fixed comments for shift operators * Added comments to utility functions * Added TOPI C++ library, exporting broadcast_add op * Fix lint * Share libinfo.py with TVM * Fix lint * Add other broadcast ops * Fix lint * Fix imports in topi * Fix lib names * Fixed build issue where windows builds don't apply correct definitions * Removed TVM_EXPORTS from topi library * Attempted CI build fix * Add topi lib to tvm_multilib * Fix Jenkinsfile * Added TOPI build target to Makefile * Fix nn op namespaces. * Fix lint * Renamed TOPI lib to libtvm_topi * Removed _ffi/base.py * Remove _ffi from topi, now shared with tvm. * Make libtvm_topi loading optional * Fix compiler warnings * Fix lint * Fix lint * Fix lint * Fix build error by making new libs argument to Target optional * Added C++ Target type interop. Added registration of remaining C++ ops and schedules. Added test of broadcast ops * Fix lint * Fix lint * Fix compile error * Fix compiler warnings * Fix compiler warnings * Fixed int vector interop. Fixed argmin incorrectly invoking argmax. Fixed corner case in default schedules of attempting to fuse 0 length axes. Added tests for reduce ops. * Refactored reduce builders * Fixed typos in topi.cc. Added basic test. * Fixed padding size error. Added dense, dilate, pooling tests * Fixed issue where clip would output a different dtype to the input. Added split_sections op to cover the other mode of the python split op. Added tests. * Changed extension type numbers to avoid clash with NNVM * Fix lint * Fix compiler warnings * Removed use of std::vector from the public TOPI API * Fix lint * Add TOPI C++ tests to CI * Fixed detail namespacing. Improved comments.
alex-weaver committed -
Siva committed
-
- 20 Jan, 2018 1 commit
-
-
Basic WebGL Backend
Zhixun Tan committed
-
- 15 Jan, 2018 1 commit
-
-
Aman committed
-
- 03 Jan, 2018 1 commit
-
-
* rocblas integration * fix include * fix lint
masahi committed
-
- 02 Jan, 2018 1 commit
-
-
* add cublas support * integrate cublas to topi dense * add cublas error check * minor fix * fix lint * remove topi import from contrib unittest
masahi committed
-
- 31 Dec, 2017 1 commit
-
-
Tianqi Chen committed
-
- 24 Dec, 2017 1 commit
-
-
* fist working miopen support * do FindFwdAlgo during build time * fix lint * update doc string * import topi after checking if rocm is enabled * add miopen namespace * fixed descriptor overwrite bug * add use_miopen option * fix lint * better miopen option handling * fix typo * fix options handling
masahi committed
-
- 01 Dec, 2017 1 commit
-
-
* [RANDOM] Init contrib.random library * [RANDOM] Add uniform * [RANDOM] Fix lint * [RANDOM] Add comments and tests * [RANDOM] Fix lint
ziheng committed
-
- 21 Nov, 2017 1 commit
-
-
* mps * update
Sheng Zha committed
-
- 01 Nov, 2017 1 commit
-
-
Cyril Lashkevich committed
-
- 16 Oct, 2017 1 commit
-
-
* [ARITH] More caninical simplfy * [DEBUG] Use HalideIR with trace logging
Tianqi Chen committed
-
- 25 Sep, 2017 1 commit
-
-
* [RUNTIME] Minimum graph runtime * update docs
Tianqi Chen committed
-
- 10 Sep, 2017 1 commit
-
-
Yizhi Liu committed
-
- 26 Aug, 2017 1 commit
-
-
* v2: runtime support for rocm * fixed coding space errors * removed kROCM from c_runtime_api.h
Aditya Atluri committed
-
- 25 Aug, 2017 1 commit
-
-
* [APP] Android RPC first version * [APP] Android RPC build jni automatically * [APP] Android OpenCL RPC tested on real devices * [APP] optimize android app interface. add ndk compile tool * add ndk compile tool * [APP] fix android app thread crash; add android test script * [APP] android app - show alert dialog and disconnect when error occurs * fix ndk build script code lint * fix ndk build default argument * ndk script build remove shell=True. disable android app screen orientation
Yizhi Liu committed
-
- 20 Aug, 2017 2 commits
-
-
* [BUILD][LLVM] Support LLVM mainline 5.0 6.0 * Reduce parallelism
Tianqi Chen committed -
Aditya Atluri committed
-
- 15 Aug, 2017 1 commit
-
-
* [Contrib] CuDNN v7 Support * Add test
ziheng committed
-
- 31 Jul, 2017 1 commit
-
-
* Install rules and dynamic library loading fixes. A batch of fixes: - Added 'install' rule to cmake and make, which installs runtime headers and library (libtvm_runtime). - Added 'installdev' rule to make, which also installs the compiler infrastructure headers and library (libtvm) - Added 'INSTALL_DEV' option to cmake, for toggling installation of compiler infrastructure headers and library - cmake no longer builds into lib/ directory; instead all build products go in your build directory - New algorithm for dynamic library loading, as described in #281. Signed-off-by: Edward Z. Yang <ezyang@fb.com> * Emit dylib on OS X Signed-off-by: Edward Z. Yang <ezyang@fb.com> * Lint fixes. Signed-off-by: Edward Z. Yang <ezyang@fb.com>
Edward Z. Yang committed
-
- 19 Jul, 2017 2 commits
-
-
Tianqi Chen committed
-
Tianqi Chen committed
-
- 15 Jul, 2017 1 commit
-
-
* JVM package skeleton * [JVM] link libtvm.so and list function names * [JVM] Function & NDArray skeleton * [JVM] TVMFuncCall in JNI * [JVM] handle string arg in TVMFuncCall * [JVM] get module function * [JVM] entry function for Module * [JVM] construct Module from function return value * [JVM] TVMContext, TVMArray attributes * [JVM] NDArray from / to java array * [JVM] load so and compute on cpu * [JVM] move PackedFunc to individual modules * [JVM] assembly package & native library loader * [JVM] unit test & codestyle check settings * [JVM] NDArray from & to different dtypes * [JVM] NDArray from native double array. Add linux-cpu profile. * [JVM] modify Makefile * [JVM] add linux-x86_64-gpu profile * [tvm4j] delay load libtvm_runtime.so * [tvm4j] refactor to pure java * [tvm4j] remove scalastyle-config.xml * [tvm4j] remove link HalideIR, remove Shape, remove scala binary versions * [tvm4j] only allow convert from/to same type array * [tvm4j] make NDArray api more readable * [tvm4j] refactor for c api * [tvm4j] add Jenkins tests * [tvm4j] fix duplicate Dockerfile cmd * [tvm4j] fix ut script filename * [tvm4j] add module load tests * [tvm4j] add javadoc, remove types package * [tvm4j] fix test script * [tvm4j] remove ut temp dir * [tvm4j] fix missing package types * [tvm4j] java code style check * [tvm4j] fix java lint * [tvm4j] downgrade checkstyle plugin for JDK7 * [tvm4j] add stylecheck in jenkins tests * [tvm4j] specify source file encoding * [tvm4j] lazy init function; add Function.call() api; allow manully release Module,NDArray,Function * [tvm4j] fix ModFree * [tvm4j] cache Function in API
Yizhi Liu committed
-
- 14 Jul, 2017 1 commit
-
-
* [RUNTIME][RPC] Change RPCServer to Event Driven Code * fix
Tianqi Chen committed
-
- 11 Jul, 2017 1 commit
-
-
Tianqi Chen committed
-
- 30 Jun, 2017 1 commit
-
-
* Add NNPack Fully Connected Inference * Add NNPack fully_connected_output * Fix lint * Fix
ziheng committed
-
- 24 Jun, 2017 1 commit
-
-
* [OP] Initial start of op library * add gtest
Tianqi Chen committed
-
- 16 Jun, 2017 1 commit
-
-
* [TUTORIAL] Add tutorial for RPC * [TUTORIAL] Update tutorial * [TUTORIAL] Update tutorial * trigger update * [TUTORIAL] Improve build
ziheng committed
-
- 15 Jun, 2017 1 commit
-
-
Tianqi Chen committed
-
- 01 Jun, 2017 1 commit
-
-
* Improve makefile * Fix
ziheng committed
-
- 31 May, 2017 2 commits
-
-
Haichen Shen committed
-
Tianqi Chen committed
-
- 25 May, 2017 1 commit
-
-
Tianqi Chen committed
-