sandeep-krishnamurthy commented on a change in pull request #7658: Parallelize 
Python 2 and 3 unit test cases in Jenkins CI.
URL: https://github.com/apache/incubator-mxnet/pull/7658#discussion_r135923707
 
 

 ##########
 File path: Jenkinsfile
 ##########
 @@ -250,31 +264,59 @@ try {
     }
 
     stage('Unit Test') {
-      parallel 'Python2/3: CPU': {
+      parallel 'Python2: CPU': {
         node('mxnetlinux') {
-          ws('workspace/ut-python-cpu') {
+          ws('workspace/ut-python2-cpu') {
             init_git()
             unpack_lib('cpu')
-            python_ut('cpu')
+            python2_ut('cpu')
           }
         }
       },
-      'Python2/3: GPU': {
+      'Python3: CPU': {
         node('mxnetlinux') {
-          ws('workspace/ut-python-gpu') {
+          ws('workspace/ut-python3-cpu') {
+            init_git()
+            unpack_lib('cpu')
+            python3_ut('cpu')
+          }
+        }
+      },
+      'Python2: GPU': {
+        node('mxnetlinux') {
+          ws('workspace/ut-python2-gpu') {
+            init_git()
+            unpack_lib('gpu', mx_lib)
+            python2_gpu_ut('gpu')
+          }
+        }
+      },
+      'Python3: GPU': {
+        node('mxnetlinux') {
+          ws('workspace/ut-python3-gpu') {
             init_git()
             unpack_lib('gpu', mx_lib)
-            python_gpu_ut('gpu')
+            python3_gpu_ut('gpu')
+          }
+        }
+      },
+      'Python2: MKLML': {
+        node('mxnetlinux') {
+          ws('workspace/ut-python2-mklml') {
+            init_git()
+            unpack_lib('mklml')
+            python2_ut('mklml_gpu')
+            python2_gpu_ut('mklml_gpu')
           }
         }
       },
-      'Python2/3: MKLML': {
+      'Python3: MKLML': {
         node('mxnetlinux') {
           ws('workspace/ut-python-mklml') {
             init_git()
             unpack_lib('mklml')
-            python_ut('mklml_gpu')
-            python_gpu_ut('mklml_gpu')
+            python3_ut('mklml_gpu')
+            python3_gpu_ut('mklml_gpu')
 
 Review comment:
   Thanks. Updated.
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to