Skip to content

Commit fe05822

Browse files
committed
more prints
1 parent 76cfc77 commit fe05822

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,10 @@ private void executeScript(String script, Map<String, Object> inputs) {
8787
this.reportLaunch();
8888
try {
8989
if (script.equals("loadModel")) {
90+
System.out.println("STATY IN WORKER LOAD");
9091
pi.loadModel((String) inputs.get("modelFolder"), (String) inputs.get("modelSource"));
9192
} else if (script.equals("inference")) {
93+
System.out.println("STATY IN WORKER");
9294
pi.runFromShmas((List<String>) inputs.get("inputs"), (List<String>) inputs.get("outputs"));
9395
} else if (script.equals("close")) {
9496
pi.closeModel();

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -239,17 +239,21 @@ void run(List<Tensor<T>> inputTensors, List<Tensor<R>> outputTensors) throws Run
239239
}
240240

241241
protected void runFromShmas(List<String> inputs, List<String> outputs) throws IOException {
242-
242+
System.out.println("REACH0");
243243
IValueVector inputsVector = new IValueVector();
244+
System.out.println("REACH1");
244245
for (String ee : inputs) {
246+
System.out.println("REACH2");
245247
Map<String, Object> decoded = Types.decode(ee);
246248
SharedMemoryArray shma = SharedMemoryArray.read((String) decoded.get(MEM_NAME_KEY));
247249
org.bytedeco.pytorch.Tensor inT = TensorBuilder.build(shma);
248250
inputsVector.put(new IValue(inT));
249251
if (PlatformDetection.isWindows()) shma.close();
250252
}
253+
System.out.println("REACH3");
251254
// Run model
252255
model.eval();
256+
System.out.println("REACH4");
253257
IValue output = model.forward(inputsVector);
254258
TensorVector outputTensorVector = null;
255259
if (output.isTensorList()) {

0 commit comments

Comments
 (0)