Skip to content

Commit 75df6d0

Browse files
authored
Add missing export
1 parent 283be2b commit 75df6d0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ndarray/src/main/java/module-info.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,16 @@
1515
=======================================================================
1616
*/
1717
module org.tensorflow.ndarray {
18+
requires jdk.unsupported; // required by raw buffer implementations using Unsafe
19+
1820
exports org.tensorflow.ndarray;
1921
exports org.tensorflow.ndarray.buffer;
2022
exports org.tensorflow.ndarray.buffer.layout;
2123
exports org.tensorflow.ndarray.index;
2224

2325
// Expose all implementions of our interfaces, so consumers can write custom
2426
// implementations easily by extending from them
27+
exports org.tensorflow.ndarray.impl.buffer;
2528
exports org.tensorflow.ndarray.impl.buffer.adapter;
2629
exports org.tensorflow.ndarray.impl.buffer.layout;
2730
exports org.tensorflow.ndarray.impl.buffer.misc;
@@ -32,6 +35,4 @@
3235
exports org.tensorflow.ndarray.impl.sequence;
3336
exports org.tensorflow.ndarray.impl.sparse;
3437
exports org.tensorflow.ndarray.impl.sparse.slice;
35-
36-
requires jdk.unsupported; // required by raw buffer implementations using Unsafe
3738
}

0 commit comments

Comments
 (0)