- 22 May, 2018 1 commit
-
-
Pariksheet Pinjari committed
-
- 19 May, 2018 2 commits
-
-
Pariksheet Pinjari committed
-
Pariksheet Pinjari committed
-
- 17 May, 2018 1 commit
-
-
* Add count_include_pad support to AvgPool * Fix python_cpp/test_topi_pooling.py * Change auto to explicitly type, and fix format.
Tatsuya Nishiyama committed
-
- 12 May, 2018 1 commit
-
-
Yao Wang committed
-
- 11 May, 2018 1 commit
-
-
Tianqi Chen committed
-
- 10 May, 2018 1 commit
-
-
MORITA Kazutaka committed
-
- 08 May, 2018 1 commit
-
-
Pariksheet Pinjari committed
-
- 25 Apr, 2018 1 commit
-
-
* support dilation in conv2d and depthwise_conv2d * handle dilated conv in extern libs (cudnn, miopen)
Yuwei Hu committed
-
- 13 Apr, 2018 1 commit
-
-
Pariksheet Pinjari committed
-
- 27 Mar, 2018 1 commit
-
-
Pariksheet Pinjari committed
-
- 08 Mar, 2018 1 commit
-
-
Pariksheet Pinjari committed
-
- 02 Mar, 2018 1 commit
-
-
* explicit import testing * Enable init api for extension modules
Tianqi Chen committed
-
- 01 Mar, 2018 1 commit
-
-
* Better error message handling for contrib * fix lint * fix testcase * fix test
Tianqi Chen committed
-
- 18 Feb, 2018 1 commit
-
-
* update c++ pool and softmax * clean up reduce axis
masahi committed
-
- 08 Feb, 2018 1 commit
-
-
* conv2d schedules for Intel CPU (AVX2 & AVX512) * fix lint * remove override register
Yizhi Liu committed
-
- 07 Feb, 2018 1 commit
-
-
* [PASS] Enable StorageRewrite before virtual thread lowering * update * fix testcase
Tianqi Chen committed
-
- 05 Feb, 2018 1 commit
-
-
* Added +x permission to task_cpp_topi.sh. Added C++ topi tests to Jenkinsfile * Fixed test_topi_math.py * Minor style fix
alex-weaver committed
-
- 04 Feb, 2018 1 commit
-
-
* Fix bugs with C++ TOPI flatten and relu * Added regression tests. Fixed typo in CMakeLists.txt. Fixed topi cpp import removed.
alex-weaver committed
-
- 03 Feb, 2018 1 commit
-
-
* Fix Vulkan Build, add tanh to llvm instrinsic, fix halideIR * fix llvm tanh
Tianqi Chen committed
-
- 02 Feb, 2018 2 commits
-
-
* [TOPI] Add compute for more operators * Remove device except llvm * Address comments * Remove matmul compute * Add outtype to boolean operator * Address coments
yuruofeifei committed -
* [BACKEND] Vulkan Runtime and SPIRV Codegen * fix doc
Tianqi Chen committed
-
- 31 Jan, 2018 1 commit
-
-
Tianqi Chen committed
-
- 28 Jan, 2018 1 commit
-
-
* 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
-
- 16 Jan, 2018 3 commits
-
-
* add basic x86 schedules * parallelize & vectorize batchnorm + relu * fuse conv into bn + relu * move rc loop to outer * add nhwc conv * change weight layout to hwcf * conv + bn + relu fusion for nhwc conv * fix conv_nhwc schedule when no fusion * clean up default parallel schedules * simplify elemwise parallel * fix elemwise parallel for batch == 1 * update nhwc conv test * fix and add comment * fix lint * remove redundant import * remove default multithreading for some ops * remove default multithreading for global pool
masahi committed -
Xingjian Shi committed
-
* support more argument type in depthwise_conv2d * mark all pointer as 'restrict' & fix vector conversion for opencl
Lianmin Zheng committed
-
- 15 Jan, 2018 1 commit
-
-
try to fix fix
Xingjian Shi committed
-
- 12 Jan, 2018 1 commit
-
-
* [LLVM] Enable same target option in JITModule * not set mcpu explicitly
Tianqi Chen committed
-
- 11 Jan, 2018 1 commit
-
-
* add upsampling cpu op * add upsampling gpu schedule * add doc for upsampling op add more doc * cleanup upsampling test * add doc * fix lint * fix lint * fix lint * remove unused import * remove skimage dependency * remove skimage import * remove schedule_upsampling
masahi committed
-
- 04 Jan, 2018 1 commit
-
-
Yizhi Liu committed
-
- 27 Dec, 2017 1 commit
-
-
* support dim-0 tensor in topi ops revert transform * revert
Xingjian Shi committed
-
- 25 Dec, 2017 1 commit
-
-
* add x86_64 target * add binary dense operator * rebase * improve schedule * remove x86 target * improve schedule
Yuwei Hu committed
-
- 14 Nov, 2017 1 commit
-
-
* conv2d perf improved for conv2d_56_64_128, test name added to differentiate workloads * fix lint error
Leyuan Wang committed
-
- 06 Nov, 2017 1 commit
-
-
Yuwei Hu committed
-
- 30 Oct, 2017 1 commit
-
-
Leyuan Wang committed
-
- 27 Oct, 2017 1 commit
-
-
Tianqi Chen committed
-
- 26 Oct, 2017 1 commit
-
-
masahi committed
-
- 25 Oct, 2017 1 commit
-
-
Yuwei Hu committed
-
- 23 Oct, 2017 1 commit
-
-
* update topi/cuda schedules to use target.max_num_threads * allow num_thread to be larger than cuda.max_num_threads * remove get_max_num_threads and make it inline
masahi committed
-