Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

numpy_split support param type fix; numpy_vsplit added #15346

Closed
wants to merge 40 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
ffd690d
[Do not review] [Do not merge] New numpy-compatible sum (#14739)
haojin2 Apr 21, 2019
2f71241
[numpy] Infra for supporting numpy ops in imperative mode and Gluon A…
reminisce May 3, 2019
355254e
Enable np op compat check with name prefix (#14897)
reminisce May 6, 2019
7a12654
[numpy] Numpy dot (#14831)
haojin2 May 8, 2019
4325676
numpy-compatible mean (#14859)
haojin2 May 9, 2019
0ee508e
[numpy] Some np ops for d2l (#14924)
reminisce May 10, 2019
043f01e
[numpy] Refactor np modules (#14989)
reminisce May 18, 2019
308bcc6
[numpy] Refactor np module (example runs through) (#15055)
reminisce May 27, 2019
6e33cc1
Change np_compat to np_shape
reminisce May 27, 2019
877e0e9
Temporarily disable test_amp
reminisce May 27, 2019
9911675
Numpy-compatible stack (#15027)
haojin2 May 31, 2019
ac92ec3
Numpy Unary Ops (#15010)
haojin2 Jun 2, 2019
0010c43
[numpy] Fix np branch after rebase (#15086)
reminisce Jun 2, 2019
aa5153f
numpy concatenate (#15104)
haojin2 Jun 4, 2019
517451b
[WIP][numpy] Fix for D2L Chapters 2/3/4 (#15139)
reminisce Jun 5, 2019
df47457
[numpy] Fix d2l performance regression (#15173)
reminisce Jun 7, 2019
4e1274f
Fix (#15188)
reminisce Jun 9, 2019
4ad56dc
fix for chapter6 conv nn (#15224)
haojin2 Jun 12, 2019
fb10e28
[numpy] Fix d2l chapter8 (#15237)
reminisce Jun 13, 2019
a00a2ce
fix for ch11 (#15244)
haojin2 Jun 14, 2019
93679fe
Numpy-compatible split (#15049)
haojin2 Jun 17, 2019
bf4dc33
[numpy] [DO NOT MERGE] Fix d2l chapters 9 and 13 (#15246)
reminisce Jun 17, 2019
96520cb
[numpy] Fix d2l chapter 5 (#15264)
reminisce Jun 18, 2019
3409578
Numpy compatible max (#15161)
stu1130 Jun 19, 2019
1b62426
Numpy compatible multinomial (#15219)
stu1130 Jun 20, 2019
2260667
Numpy compatible linspace (#15256)
stu1130 Jun 20, 2019
f803dde
numpy-compatible cumsum (#15309)
haojin2 Jun 23, 2019
a563b56
[numpy] Misc fix for other chapters (#15332)
reminisce Jun 23, 2019
6b7525c
[numpy] Change d2l chapters cv and gan to use numpy (#15368)
reminisce Jun 27, 2019
4dfb7b9
add doc for multinomial, dot, cumsum, clip, abs, exp, arctan (#15386)
hzfan Jun 28, 2019
d60e105
[numpy] Fix several places in numpy (#15398)
reminisce Jun 28, 2019
a8745d3
Vsplit frontend created; test added
zoeygxy Jun 24, 2019
1b86f2d
numpy_split indices support type added; vsplit test refined
zoeygxy Jun 24, 2019
8d71116
Test passed; style fix
zoeygxy Jun 25, 2019
6b5a8a4
Modify doc of vsplit
zoeygxy Jul 2, 2019
2d31df8
Vsplit doc updated
zoeygxy Jul 2, 2019
a8ecd10
Typo fixed
zoeygxy Jul 2, 2019
b80f852
multiarray.py doc fix
zoeygxy Jul 12, 2019
6008376
_op.py doc update
zoeygxy Jul 12, 2019
f0d3eb6
Update _Symbol.py doc
zoeygxy Jul 12, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions ci/jenkins/Jenkins_steps.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ def compile_unix_cpu_openblas() {
timeout(time: max_time, unit: 'MINUTES') {
utils.init_git()
utils.docker_run('ubuntu_cpu', 'build_ubuntu_cpu_openblas', false)
utils.pack_lib('cpu', mx_lib_cython, true)
// utils.pack_lib('cpu', mx_lib_cython, true)
utils.pack_lib('cpu', mx_lib, true)
}
}
}
Expand Down Expand Up @@ -266,7 +267,8 @@ def compile_unix_cmake_gpu() {
timeout(time: max_time, unit: 'MINUTES') {
utils.init_git()
utils.docker_run('ubuntu_gpu_cu100', 'build_ubuntu_gpu_cmake', false)
utils.pack_lib('cmake_gpu', mx_cmake_lib_cython, true)
// utils.pack_lib('cmake_gpu', mx_cmake_lib_cython, true)
utils.pack_lib('cmake_gpu', mx_cmake_lib, true)
}
}
}
Expand Down Expand Up @@ -643,8 +645,10 @@ def test_unix_python2_cpu() {
node(NODE_LINUX_CPU) {
ws('workspace/ut-python2-cpu') {
try {
utils.unpack_and_init('cpu', mx_lib_cython, true)
python2_ut_cython('ubuntu_cpu')
// utils.unpack_and_init('cpu', mx_lib_cython, true)
// python2_ut_cython('ubuntu_cpu')
utils.unpack_and_init('cpu', mx_lib, true)
python2_ut('ubuntu_cpu')
utils.publish_test_coverage()
} finally {
utils.collect_test_results_unix('nosetests_unittest.xml', 'nosetests_python2_cpu_unittest.xml')
Expand Down Expand Up @@ -745,8 +749,10 @@ def test_unix_python3_gpu() {
node(NODE_LINUX_GPU) {
ws('workspace/ut-python3-gpu') {
try {
utils.unpack_and_init('gpu', mx_lib_cython, true)
python3_gpu_ut_cython('ubuntu_gpu_cu100')
// utils.unpack_and_init('gpu', mx_lib_cython, true)
// python3_gpu_ut_cython('ubuntu_gpu_cu100')
utils.unpack_and_init('gpu', mx_lib, true)
python3_gpu_ut('ubuntu_gpu_cu100')
utils.publish_test_coverage()
} finally {
utils.collect_test_results_unix('nosetests_gpu.xml', 'nosetests_python3_gpu.xml')
Expand Down
4 changes: 2 additions & 2 deletions ci/jenkins/Jenkinsfile_unix_cpu
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ core_logic: {
custom_steps.test_unix_python3_mkldnn_mkl_cpu(),
custom_steps.test_unix_scala_cpu(),
custom_steps.test_unix_scala_mkldnn_cpu(),
custom_steps.test_unix_clojure_cpu(),
custom_steps.test_unix_clojure_integration_cpu(),
// custom_steps.test_unix_clojure_cpu(),
// custom_steps.test_unix_clojure_integration_cpu(),
custom_steps.test_unix_perl_cpu(),
custom_steps.test_unix_r_cpu(),
custom_steps.test_unix_r_mkldnn_cpu(),
Expand Down
Loading