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

enabling build stage gpu_int64 to enable large tensor nightly runs #17546

Merged
merged 1 commit into from
Feb 10, 2020
Merged
Changes from all commits
Commits
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
30 changes: 6 additions & 24 deletions tests/nightly/JenkinsfileForBinaries
Original file line number Diff line number Diff line change
Expand Up @@ -40,25 +40,16 @@ core_logic: {
utils.pack_lib('gpu', mx_lib_cpp_example_mkl)
}
}
}/*,
},
'CPU: USE_INT64_TENSOR_SIZE': {
node(NODE_LINUX_CPU) {
node(NODE_LINUX_GPU) {
ws('workspace/build-cpu-int64') {
utils.init_git()
utils.docker_run('ubuntu_nightly_cpu', 'build_ubuntu_cpu_large_tensor', false)
utils.pack_lib('cpu_int64', mx_cmake_lib)
}
}
},
'GPU: USE_INT64_TENSOR_SIZE': {
node(NODE_LINUX_GPU) {
ws('workspace/build-gpu-int64') {
utils.init_git()
utils.docker_run('ubuntu_nightly_gpu', 'build_ubuntu_gpu_large_tensor', true)
utils.pack_lib('gpu_int64', mx_cmake_lib)
}
}
}*/
}
}

stage('NightlyTests'){
Expand Down Expand Up @@ -86,21 +77,12 @@ core_logic: {
}
}
},
// https://github.com/apache/incubator-mxnet/issues/14980
/*'Test Large Tensor Size: CPU': {
node(NODE_LINUX_CPU) {
'Test Large Tensor Size: CPU': {
node(NODE_LINUX_GPU) {
ws('workspace/large_tensor-cpu') {
utils.unpack_and_init('cpu_int64', mx_cmake_lib)
utils.docker_run('ubuntu_nightly_cpu', 'nightly_test_large_tensor', false)
}
}
},*/
'Test Large Tensor Size: GPU': {
node(NODE_LINUX_GPU) {
ws('workspace/large_tensor-gpu') {
utils.unpack_and_init('gpu_int64', mx_cmake_lib)
utils.docker_run('ubuntu_nightly_gpu', 'nightly_test_large_tensor', true)
utils.docker_run('ubuntu_nightly_gpu', 'nightly_test_large_vector', true)
utils.docker_run('ubuntu_nightly_cpu', 'nightly_test_large_vector', false)
}
}
},
Expand Down