You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2019/12/20 06:57:21 UTC

[GitHub] [incubator-mxnet] haojin2 opened a new pull request #17131: Support broadcast assign for `npi_boolean_mask_assign_tensor`

haojin2 opened a new pull request #17131: Support broadcast assign for `npi_boolean_mask_assign_tensor`
URL: https://github.com/apache/incubator-mxnet/pull/17131
 
 
   ## Description ##
   As title.
   This is the backbone for supporting case like:
   ```python
   from mxnet import np, npx
   npx.set_np()
   a = np.zeros((3, 4))
   mask = np.array([False, True, True])
   a[mask, :] = np.ones((1, 4)) # the (1, 4) tensor is broadcasted onto the target shape of (2, 4)
   ```
   
   ## Checklist ##
   ### Essentials ###
   Please feel free to remove inapplicable items for your PR.
   - [ ] The PR title starts with [MXNET-$JIRA_ID], where $JIRA_ID refers to the relevant [JIRA issue](https://issues.apache.org/jira/projects/MXNET/issues) created (except PRs with tiny changes)
   - [ ] Changes are complete (i.e. I finished coding on this PR)
   - [ ] All changes have test coverage:
   - Unit tests are added for small changes to verify correctness (e.g. adding a new operator)
   - Nightly tests are added for complicated/long-running ones (e.g. changing distributed kvstore)
   - Build tests will be added for build configuration changes (e.g. adding a new build option with NCCL)
   - [ ] Code is well-documented: 
   - For user-facing API changes, API doc string has been updated. 
   - For new C++ functions in header files, their functionalities and arguments are documented. 
   - For new examples, README.md is added to explain the what the example does, the source of the dataset, expected performance on test set and reference to the original paper if applicable
   - Check the API doc at https://mxnet-ci-doc.s3-accelerate.dualstack.amazonaws.com/PR-$PR_ID/$BUILD_ID/index.html
   - [ ] To the best of my knowledge, examples are either not affected by this change, or have been fixed to be compatible with this change
   
   ### Changes ###
   - [x] Added support
   - [x] Unit test
   
   ## Comments ##
   - If this change is a backward incompatible change, why must this change be made.
   - Interesting edge cases to note here
   

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


With regards,
Apache Git Services

[GitHub] [incubator-mxnet] reminisce merged pull request #17131: Support broadcast assign for `npi_boolean_mask_assign_tensor`

Posted by GitBox <gi...@apache.org>.
reminisce merged pull request #17131: Support broadcast assign for `npi_boolean_mask_assign_tensor`
URL: https://github.com/apache/incubator-mxnet/pull/17131
 
 
   

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


With regards,
Apache Git Services