Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this case, the stash is labelled as mkldnn_gpu. The easiest way to map this to a build-step, is by opening the Jenkinsfile and searching for    pack_lib('mkldnn_gpu'  In this case, you will find a block like the following:

...

'GPU: MKLDNN': {

...


  node('mxnetlinux-cpu') {

...


    ws('workspace/build-mkldnn-gpu') {

...


      init_git()

...


      sh "ci/build.py --build --platform ubuntu_build_cuda /work/runtime_functions.sh build_ubuntu_gpu_mkldnn"

...


      pack_lib('mkldnn_gpu', mx_mkldnn_lib)

...


    }
  }
},

This means that the build-step you are looking for is called "GPU: MKLDNN". Now, please execute the steps described in the Build-Paragraph above before continuing. 

...