Skip to content

Commit 2099e67

Browse files
committed
add more debugging prints
1 parent 62b4bd0 commit 2099e67

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/io/bioimage/modelrunner/pytorch/javacpp/PytorchJavaCPPInterface.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import java.nio.charset.StandardCharsets;
3030
import java.security.ProtectionDomain;
3131
import java.util.ArrayList;
32+
import java.util.Arrays;
3233
import java.util.HashMap;
3334
import java.util.LinkedHashMap;
3435
import java.util.LinkedList;
@@ -59,7 +60,6 @@
5960
import io.bioimage.modelrunner.utils.CommonUtils;
6061
import net.imglib2.Cursor;
6162
import net.imglib2.RandomAccessibleInterval;
62-
import net.imglib2.loops.LoopBuilder;
6363
import net.imglib2.type.NativeType;
6464
import net.imglib2.type.numeric.RealType;
6565
import net.imglib2.util.Cast;
@@ -245,6 +245,7 @@ protected void runFromShmas(List<String> inputs, List<String> outputs) throws IO
245245
IValueVector inputsVector = new IValueVector();
246246
for (String ee : inputs) {
247247
Map<String, Object> decoded = Types.decode(ee);
248+
System.out.println("MM: -> " + ee);
248249
SharedMemoryArray shma = SharedMemoryArray.read((String) decoded.get(MEM_NAME_KEY));
249250
org.bytedeco.pytorch.Tensor inT = TensorBuilder.build(shma);
250251
inputsVector.put(new IValue(inT));
@@ -320,6 +321,7 @@ else if (task.status == TaskStatus.CRASHED) {
320321
shmaOutputList.add(shm);
321322
}
322323
RandomAccessibleInterval<T> rai = shm.getSharedRAI();
324+
System.out.println("Output size: " + Arrays.asList(rai.dimensionsAsLongArray()));
323325
// TODO remove
324326
double max0 = 0;
325327
Cursor<T> iter0 = Views.iterable(rai).cursor();
@@ -430,6 +432,7 @@ private <T extends RealType<T> & NativeType<T>> List<String> encodeInputs(List<T
430432
List<String> encodedInputTensors = new ArrayList<String>();
431433
Gson gson = new Gson();
432434
for (Tensor<T> tt : inputTensors) {
435+
System.out.println("Input size: " + Arrays.asList(tt.getData().dimensionsAsLongArray()));
433436
SharedMemoryArray shma = SharedMemoryArray.createSHMAFromRAI(tt.getData(), false, true);
434437
shmaInputList.add(shma);
435438
HashMap<String, Object> map = new HashMap<String, Object>();

0 commit comments

Comments
 (0)