You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mxnet.apache.org by GitBox <gi...@apache.org> on 2021/09/28 00:25:46 UTC

[GitHub] [incubator-mxnet] josephevans opened a new issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

josephevans opened a new issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616


   ## Problem statement
   Based on the feedback from ASF on our vote to release MXNet v1.9.0.rc7, we still have a few licensing issues that caused a -1 vote, which prevents us from moving forward with the release.
   
   Based on the RC7 voting thread, the following licensing issues are still outstanding:
   
   - [ ] Files incorrectly have ASF headers. These files are all copyrighted by NumPy developers and released under the 3-clause BSD license. We should not have added the ASF header and kept the original license headers intact, and mention this by including it in the "3-clause BSD license" section in LICENSE.
     - src/operator/numpy/np_einsum_op.cc
     - src/operator/numpy/np_einsum_op-inl.h
     - src/operator/numpy/np_einsum_path_op-inl.h
   
   - [ ] Some files are not correctly listed in LICENSE. For example, these files contain a "Copyright Microsoft" line but are released under ASF-2 or MIT license. These need to be properly mentioned in LICENSE:
     - src/operator/contrib/deformable_psroi_pooling.cu
     - src/operator/contrib/deformable_psroi_pooling-inl.h
     - src/operator/contrib/deformable_psroi_pooling.cc
     - src/operator/contrib/multi_proposal-inl.h
     - src/operator/contrib/multi_proposal.cc
     - src/operator/contrib/multi_proposal.cu
     - src/operator/contrib/psroi_pooling.cc
     - src/operator/contrib/psroi_pooling.cu
     - _**Additional files in the same situation as above (identified by running skywalking-eyes):**_
     - src/operator/contrib/psroi_pooling-inl.h
     - src/operator/contrib/deformable_convolution-inl.h
     - src/operator/contrib/deformable_convolution.cc
     - src/operator/contrib/deformable_convolution.cu
   
   As ASF noted, not all files were checked and there could be others that are missed. In order to better identify licensing issues in the future, we should extend the use of automated tools (such as [skywalking-eyes](https://github.com/apache/skywalking-eyes)). 
   
   - [ ] Updated out automated tools to detect files that have multiple license headers
   - [ ] Create/extend current tool to ensure files are correctly listed in the correct section in LICENSE
   - [ ] Properly document 3rd-party files/symlinks in include directory in LICENSE
   
   
   ## References
   - RC7 Voting Thread: https://lists.apache.org/thread.html/r5789f5d93716d9d710b855775e71e4892fd37e41338c70c0855958ad%40%3Cgeneral.incubator.apache.org%3E
   - 
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-957061210


   Based on @szha's comments above, I have created a [PR](https://github.com/apache/incubator-mxnet/pull/20709) to address these issues as well as make the licensing more clear for binary releases. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-929807480


   I manually checked all source files in `src/operator/contrib` and `src/operator/numpy` to ensure they are either:
   
   1. Licensed under ASF-2.0 license with standard recognizable header. If they do not contain the standard header, they should be listed under the ASF-2.0 section in `LICENSE`
   2. Licensed under some other compatible license, but clearly mentioned in `LICENSE` under the compatible license section (ie BSD 2/3-clause, MIT, etc.)
   
   Any help manually auditing the rest of the source tree would be greatly appreciated.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] barry-jin edited a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
barry-jin edited a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-932633836


   I have manually checked all the header files in include/onednn(mkldnn), include/dlpack, include/dmlc, include/mshadow and found one more issue: 
   
   - [x] include/dmlc/concurrentqueue.h and include/dmlc/blockingconcurrentqueue.h are under the Simplified BSD license (2-clause BSD license), which are not correctly listed in LICENSE. 
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-928506819


   I've created a PR (https://github.com/apache/incubator-mxnet/pull/20598) to address the first two items. Please review with any comments/suggestions/concerns.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-952367242


   At this point, we have manually reviewed all the source files in `src` to ensure they are properly ASF-2.0 licensed, or licensed under a difference license and mentioned in `LICENSE`. We also added another CI pipeline to run the skywalking-eyes license checker and identified a few minor license typos (such as extra characters accidentally added to license headers.) 
   
   Since we don't believe there are any additional outstanding license issues, I think we should move forward with the v1.9.0 release. Does anyone have comments or issues?


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans removed a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans removed a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-957061210


   Based on @szha's comments above, I have created a [PR](https://github.com/apache/incubator-mxnet/pull/20709) to address these issues as well as make the licensing more clear for binary releases. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-957061210


   Based on @szha's comments above, I have created a [PR](https://github.com/apache/incubator-mxnet/pull/20709) to address these issues as well as make the licensing more clear for binary releases. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans closed issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans closed issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616


   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans edited a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans edited a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-928506819


   I've created a PR (https://github.com/apache/incubator-mxnet/pull/20598) to address the first two items. Please review with any comments/suggestions/concerns. This PR also adds a Github workflow (thanks to @barry-jin for help) to use Apache's latest license checking tool, skywalking-eyes. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-957061210


   Based on @szha's comments above, I have created a [PR](https://github.com/apache/incubator-mxnet/pull/20709) to address these issues as well as make the licensing more clear for binary releases. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans removed a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans removed a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-957061210


   Based on @szha's comments above, I have created a [PR](https://github.com/apache/incubator-mxnet/pull/20709) to address these issues as well as make the licensing more clear for binary releases. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] szha commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
szha commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-959778359


   Thanks Joe & community for continuing to push this along. 
   
   Given that this release process has drawn on quite a while, would it be possible to pull in PR #20137 [1]? This goes along with #20107 [2] that was part of 1.9.0.rc7 [3] for deconvolution support. I would be happy to do the backporting.
   
   Thanks!
   Sam
   
   [1] https://github.com/apache/incubator-mxnet/pull/20137
   [2] https://github.com/apache/incubator-mxnet/pull/20107 
   [3] https://github.com/apache/incubator-mxnet/releases/tag/1.9.0.rc7
   
   
   On 11/2/21, 7:12 PM, "Joe Evans" ***@***.***> wrote:
   
       CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you can confirm the sender and know the content is safe.
   
   
   
       Once #20722 is merged, I would like to close this issue and move forward with 1.9.0.rc8. I've converted the single outstanding task of updating the license tool to a new item for tracking (#20723).
   
       --
       You are receiving this because you were mentioned.
       Reply to this email directly or view it on GitHub:
       https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-958599982
   
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-958599982


   Once #20722 is merged, I would like to close this issue and move forward with 1.9.0.rc8. I've converted the single outstanding task of updating the license tool to a new item for tracking (#20723).


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-938183073


   I looked into the `license_header.py` script, and it actually will detect when a file has multiple licenses and throw an error. We may need to expand the list of strings it recognizes licenses with here:
   
   https://github.com/apache/incubator-mxnet/blob/v1.9.x/tools/license_header.py#L62-L63


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans removed a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans removed a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-957061210


   Based on @szha's comments above, I have created a [PR](https://github.com/apache/incubator-mxnet/pull/20709) to address these issues as well as make the licensing more clear for binary releases. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans closed issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans closed issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616


   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-929807480


   I manually checked all source files in `src/operator/contrib` and `src/operator/numpy` to ensure they are either:
   
   1. Licensed under ASF-2.0 license with standard recognizable header. If they do not contain the standard header, they should be listed under the ASF-2.0 section in `LICENSE`
   2. Licensed under some other compatible license, but clearly mentioned in `LICENSE` under the compatible license section (ie BSD 2/3-clause, MIT, etc.)
   
   Any help manually auditing the rest of the source tree would be greatly appreciated.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans edited a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans edited a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-928506819


   I've created a PR (https://github.com/apache/incubator-mxnet/pull/20598) to address the first three items and checked them as complete. Please review with any comments/suggestions/concerns. This PR also adds a Github workflow (thanks to @barry-jin for help) to use Apache's latest license checking tool, skywalking-eyes. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans edited a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans edited a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-928506819


   I've created a PR (https://github.com/apache/incubator-mxnet/pull/20598) to address the first three items and the last item (and checked as complete.) Please review with any comments/suggestions/concerns. This PR also adds a Github workflow (thanks to @barry-jin for help) to use Apache's latest license checking tool, skywalking-eyes. 


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-953530851


   Thanks for the feedback @szha. I addressed the two issues you list above in #20709. I also audited the LICENSE file in v1.x branch and ensured everything listed is in the proper section. 
   
   After reading through https://infra.apache.org/licensing-howto.html, I also wanted to ensure that we comply to licensing terms for binary distributions - we need to include any copyright clauses and provide the associated license text in any binary distribution of MXNet. In order to achieve this, I created a number of LICENSE.*.txt files that includes the required text. These files should automatically get included in pip wheels (see https://github.com/apache/incubator-mxnet/blob/v1.x/tools/pip/setup.py#L94-L95) to fulfill terms. This is how the TVM project includes license text, although MXNet has many more files under different licenses.
   
   I would appreciate a review or comments on this approach.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans edited a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans edited a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-928506819






-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-928506819


   I've created a PR (https://github.com/apache/incubator-mxnet/pull/20598) to address the first two items. Please review with any comments/suggestions/concerns.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] szha commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
szha commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-959778359






-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] szha commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
szha commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-959778359


   Thanks Joe & community for continuing to push this along. 
   
   Given that this release process has drawn on quite a while, would it be possible to pull in PR #20137 [1]? This goes along with #20107 [2] that was part of 1.9.0.rc7 [3] for deconvolution support. I would be happy to do the backporting.
   
   Thanks!
   Sam
   
   [1] https://github.com/apache/incubator-mxnet/pull/20137
   [2] https://github.com/apache/incubator-mxnet/pull/20107 
   [3] https://github.com/apache/incubator-mxnet/releases/tag/1.9.0.rc7
   
   
   On 11/2/21, 7:12 PM, "Joe Evans" ***@***.***> wrote:
   
       CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you can confirm the sender and know the content is safe.
   
   
   
       Once #20722 is merged, I would like to close this issue and move forward with 1.9.0.rc8. I've converted the single outstanding task of updating the license tool to a new item for tracking (#20723).
   
       --
       You are receiving this because you were mentioned.
       Reply to this email directly or view it on GitHub:
       https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-958599982
   
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] barry-jin commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
barry-jin commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-932633836


   I have manually checked all the header files in include/onednn(mkldnn), include/dlpack, include/dmlc, include/mshadow and found one more issue: 
   
   - [ ] include/dmlc/concurrentqueue.h and include/dmlc/blockingconcurrentqueue.h are under the Simplified BSD license (2-clause BSD license), which are not correctly listed in LICENSE. 
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-937418468


   I'm currently having issues getting #20626 to pass CI because of MKLDNN-related tests - opened an issue (#20643) to track.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-961394796






-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-937418468






-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-961394796


   Merged #20726 into v1.9.x, we should be ready for another release candidate. Closing this issue.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-958433056


   Created a PR for the v1.9.x branch: https://github.com/apache/incubator-mxnet/pull/20722


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-958599982


   Once #20722 is merged, I would like to close this issue and move forward with 1.9.0.rc8. I've converted the single outstanding task of updating the license tool to a new item for tracking (#20723).


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] barry-jin edited a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
barry-jin edited a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-932633836


   I have manually checked all the header files in include/onednn(mkldnn), include/dlpack, include/dmlc, include/mshadow and found one more issue: 
   
   - [x] include/dmlc/concurrentqueue.h and include/dmlc/blockingconcurrentqueue.h are under the Simplified BSD license (2-clause BSD license), which are not correctly listed in LICENSE. 
   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans commented on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans commented on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-958433056






-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans closed issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans closed issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616


   


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org


[GitHub] [incubator-mxnet] josephevans edited a comment on issue #20616: [RFC] [Licensing] Address ASF Feedback for 1.9.0.rc7 release

Posted by GitBox <gi...@apache.org>.
josephevans edited a comment on issue #20616:
URL: https://github.com/apache/incubator-mxnet/issues/20616#issuecomment-929807480


   I manually checked all source files in `src/operator` to ensure they are either:
   
   1. Licensed under ASF-2.0 license with standard recognizable header. If they do not contain the standard header, they should be listed under the ASF-2.0 section in `LICENSE`
   2. Licensed under some other compatible license, but clearly mentioned in `LICENSE` under the compatible license section (ie BSD 2/3-clause, MIT, etc.)
   
   Any help manually auditing the rest of the source tree would be greatly appreciated.


-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org