Skip to content

Commit d15cc3e

Browse files
committed
keep truing to understand output
1 parent b6d3826 commit d15cc3e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/main/java/io/bioimage/modelrunner/tensorflow/v1/shm/ShmBuilder.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,14 @@ private static void buildFromTensorFloat(Tensor<Float> tensor, String memoryName
124124
SharedMemoryArray shma = SharedMemoryArray.readOrCreate(memoryName, arrayShape, new FloatType(), false, true);
125125
ByteBuffer buff = shma.getDataBufferNoHeader();
126126
tensor.writeTo(buff);
127-
127+
ByteBuffer buffer = ByteBuffer.allocate(buff.capacity());
128+
tensor.writeTo(buffer);
128129
try (FileOutputStream fos = new FileOutputStream("/home/carlos/git/interp_out" + UUID.randomUUID().toString() + ".npy");
129130
FileChannel fileChannel = fos.getChannel()) {
130-
fileChannel.write(ByteBuffer.wrap(tensor.bytesValue()));
131+
// Write the buffer's content to the file
132+
while (buffer.hasRemaining()) {
133+
fileChannel.write(buffer);
134+
}
131135
} catch (IOException e) {
132136
// TODO Auto-generated catch block
133137
e.printStackTrace();

0 commit comments

Comments
 (0)