yinghu5 commented on a change in pull request #14877: Fix the incorrect
MKLDNN/MKL logic in cmake
URL: https://github.com/apache/incubator-mxnet/pull/14877#discussion_r281960000
##########
File path: ci/jenkins/Jenkins_steps.groovy
##########
@@ -515,6 +515,48 @@ def compile_windows_cpu() {
}]
}
+def compile_windows_cpu_mkldnn() {
+ return ['Build CPU MKLDNN windows':{
+ node(NODE_WINDOWS_CPU) {
+ ws('workspace/build-cpu-mkldnn') {
+ timeout(time: max_time, unit: 'MINUTES') {
+ utils.init_git_win()
+ powershell 'py -3 ci/build_windows.py -f WIN_CPU_MKLDNN'
+ stash includes: 'windows_package.7z', name:
'windows_package_cpu_mkldnn'
+ }
+ }
+ }
+ }]
+}
+
+def compile_windows_cpu_mkldnn_mkl() {
+ return ['Build CPU MKLDNN MKL windows':{
+ node(NODE_WINDOWS_CPU) {
+ ws('workspace/build-cpu-mkldnn-mkl') {
+ timeout(time: max_time, unit: 'MINUTES') {
+ utils.init_git_win()
+ powershell 'py -3 ci/build_windows.py -f WIN_CPU_MKLDNN_MKL'
+ stash includes: 'windows_package.7z', name:
'windows_package_cpu_mkldnn_mkl'
+ }
+ }
+ }
+ }]
+}
+
+def compile_windows_cpu_mkl() {
+ return ['Build CPU NOMKLDNN MKL windows':{
+ node(NODE_WINDOWS_CPU) {
+ ws('workspace/build-cpu-nomkldnn-mkl') {
+ timeout(time: max_time, unit: 'MINUTES') {
+ utils.init_git_win()
+ powershell 'py -3 ci/build_windows.py -f WIN_CPU_NOMKLDNN_MKL'
Review comment:
thank you for fix. change it now.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services