Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix various typo in module-info exports #881

Merged
merged 2 commits into from
May 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Fix JPMS modules for CUDA, ARPACK-NG, GSL, SciPy, Gym, MXNet ([pull #880](https://github.com/bytedeco/javacpp-presets/pull/880) and [pull #881](https://github.com/bytedeco/javacpp-presets/pull/881))
* Build OpenBLAS with a `TARGET` even for `DYNAMIC_ARCH` to avoid SIGILL ([issue eclipse/deeplearning4j#8747](https://github.com/eclipse/deeplearning4j/issues/8747))
* Upgrade presets for Arrow 0.17.0, MKL-DNN 0.21.5, DNNL 1.4, NumPy 1.18.3, and their dependencies
* Add `FullOptimization.h` allowing users to fully optimize LLVM modules ([pull #869](https://github.com/bytedeco/javacpp-presets/pull/869))
Expand Down
2 changes: 1 addition & 1 deletion arpack-ng/src/main/java9/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
requires transitive org.bytedeco.javacpp;
requires transitive org.bytedeco.openblas;
exports org.bytedeco.arpackng.global;
exports org.bytedeco.arpacking.presets;
exports org.bytedeco.arpackng.presets;
}
2 changes: 1 addition & 1 deletion gsl/src/main/java9/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
requires transitive org.bytedeco.javacpp;
requires transitive org.bytedeco.openblas;
exports org.bytedeco.gsl.global;
exports org.bytedeco.gls.presets;
exports org.bytedeco.gsl.presets;
exports org.bytedeco.gsl;
}
2 changes: 0 additions & 2 deletions gym/src/main/java9/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
module org.bytedeco.gym {
requires transitive org.bytedeco.javacpp;
exports org.bytedeco.gym.global;
exports org.bytedeco.gym.presets;
exports org.bytedeco.gym;
}
2 changes: 1 addition & 1 deletion mxnet/src/main/java9/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
exports org.apache.mxnet.spark.example;
exports org.apache.mxnet.spark.transformer;
exports org.apache.mxnet.spark.io;
exports org.apache.mxnet.spark.optimizer;
exports org.apache.mxnet.optimizer;
}
2 changes: 0 additions & 2 deletions scipy/src/main/java9/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
module org.bytedeco.scipy {
requires transitive org.bytedeco.javacpp;
exports org.bytedeco.scipy.global;
exports org.bytedeco.scipy.presets;
exports org.bytedeco.scipy;
}