File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
src/test/scripts/functions/einsum Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change 1717 * under the License.
1818-->
1919
20- <<<<<<<< HEAD:src/test/scripts/functions/einsum/SystemDS-config-einsum.xml
2120<root >
2221 <sysds .localtmpdir>/tmp/systemds</sysds .localtmpdir>
2322 <sysds .scratch>scratch_space</sysds .scratch>
2726 <sysds .local.spark.number.threads>16</sysds .local.spark.number.threads>
2827 <sysds .native.blas>auto</sysds .native.blas>
2928</root >
30- ========
31- package org.apache.sysds.runtime.io.hdf5;
32-
33- import java.io.Closeable;
34- import java.io.IOException;
35- import java.nio.ByteBuffer;
36-
37- public interface H5ByteReader extends Closeable {
38-
39- ByteBuffer read(long offset, int length) throws IOException;
40-
41- default ByteBuffer read(long offset, int length, ByteBuffer reuse) throws IOException {
42- return read(offset, length);
43- }
44-
45- @Override
46- void close() throws IOException;
47- }
48- >>>>>>>> 6b1708bd1e (dd):src/main/java/org/apache/sysds/runtime/io/hdf5/H5ByteReader.java
You can’t perform that action at this time.
0 commit comments