ChaiBapchya commented on pull request #18664:
URL: https://github.com/apache/incubator-mxnet/pull/18664#issuecomment-656911391


   unix-gpu fails with test_npx_batch_norm here as you can see here: 
http://jenkins.mxnet-ci.amazon-ml.com/blue/organizations/jenkins/mxnet-validation%2Funix-gpu/detail/PR-18664/6/pipeline
   
   Searching on apache/incubator-mxnet issues: 
https://github.com/apache/incubator-mxnet/issues/18687
   This got fixed by a PR: #18688 
   
   So you'll have to rebase this PR on master [so that your branch contains the 
commit which fixed it]
   To rebase
   
   1. Add upstream
   ```
   git remote add upstream https://github.com/apache/incubator-mxnet
   ```
   2. Sync fork master with upstream master
   ```
   git checkout master
   git fetch upstream master
   git merge upstream/master
   git push origin master
   ```
   3. Sync feature branch
   ```
   git checkout <branchname>
   git rebase master
   git push -f origin <branchname>
   ```
   Other alternative to rebase would be to merge it [this results in a new 
commit which says "Merge..." and thus doesn't require a "force push"
   ```
   git checkout <branchname>
   git merge master
   git push origin <branchname>
   ```


----------------------------------------------------------------
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:
us...@infra.apache.org


Reply via email to