Skip to content

Commit dc6b0e2

Browse files
committed
correct javadoc
1 parent 4eb89ff commit dc6b0e2

File tree

3 files changed

+29
-127
lines changed

3 files changed

+29
-127
lines changed

src/main/java/io/bioimage/modelrunner/tensorflow/v1/JavaWorker.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ public class JavaWorker {
2121
private final Tensorflow1Interface ti;
2222

2323
private boolean cancelRequested = false;
24-
24+
25+
/**
26+
* Method in the child process that is in charge of keeping the process open and calling the model load,
27+
* model inference and model closing
28+
* @param args
29+
* args of the parent process
30+
*/
2531
public static void main(String[] args) {
2632

2733
try(Scanner scanner = new Scanner(System.in)){

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

+12-55
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,17 @@
3131
import org.tensorflow.Tensor;
3232
import org.tensorflow.types.UInt8;
3333

34-
import net.imglib2.RandomAccessibleInterval;
3534
import net.imglib2.type.numeric.integer.IntType;
3635
import net.imglib2.type.numeric.integer.LongType;
3736
import net.imglib2.type.numeric.integer.UnsignedByteType;
3837
import net.imglib2.type.numeric.real.DoubleType;
3938
import net.imglib2.type.numeric.real.FloatType;
4039

4140
/**
42-
* A {@link RandomAccessibleInterval} builder for TensorFlow {@link Tensor} objects.
43-
* Build ImgLib2 objects (backend of {@link io.bioimage.modelrunner.tensor.Tensor})
44-
* from Tensorflow 2 {@link Tensor}
41+
* A utility class that converts {@link Tensor} tensors into {@link SharedMemoryArray}s for
42+
* interprocessing communication
4543
*
46-
* @author Carlos Garcia Lopez de Haro and Daniel Felipe Gonzalez Obando
44+
* @author Carlos Garcia Lopez de Haro
4745
*/
4846
public final class ShmBuilder
4947
{
@@ -54,16 +52,15 @@ private ShmBuilder()
5452
{
5553
}
5654

57-
/**
58-
* Creates a {@link RandomAccessibleInterval} from a given {@link TType} tensor
59-
*
60-
* @param <T>
61-
* the possible ImgLib2 datatypes of the image
62-
* @param tensor
63-
* The {@link TType} tensor data is read from.
64-
* @throws IllegalArgumentException If the {@link TType} tensor type is not supported.
65-
* @throws IOException
66-
*/
55+
/**
56+
* Create a {@link SharedMemoryArray} from a {@link Tensor} tensor
57+
* @param tensor
58+
* the tensor to be passed into the other process through the shared memory
59+
* @param memoryName
60+
* the name of the memory region where the tensor is going to be copied
61+
* @throws IllegalArgumentException if the data type of the tensor is not supported
62+
* @throws IOException if there is any error creating the shared memory array
63+
*/
6764
@SuppressWarnings("unchecked")
6865
public static void build(Tensor<?> tensor, String memoryName) throws IllegalArgumentException, IOException
6966
{
@@ -84,14 +81,6 @@ public static void build(Tensor<?> tensor, String memoryName) throws IllegalArgu
8481
}
8582
}
8683

87-
/**
88-
* Builds a {@link RandomAccessibleInterval} from a unsigned byte-typed {@link TUint8} tensor.
89-
*
90-
* @param tensor
91-
* The {@link TUint8} tensor data is read from.
92-
* @return The {@link RandomAccessibleInterval} built from the tensor, of type {@link UnsignedByteType}.
93-
* @throws IOException
94-
*/
9584
private static void buildFromTensorUByte(Tensor<UInt8> tensor, String memoryName) throws IOException
9685
{
9786
long[] arrayShape = tensor.shape();
@@ -104,14 +93,6 @@ private static void buildFromTensorUByte(Tensor<UInt8> tensor, String memoryName
10493
if (PlatformDetection.isWindows()) shma.close();
10594
}
10695

107-
/**
108-
* Builds a {@link RandomAccessibleInterval} from a unsigned int32-typed {@link TInt32} tensor.
109-
*
110-
* @param tensor
111-
* The {@link TInt32} tensor data is read from.
112-
* @return The {@link RandomAccessibleInterval} built from the tensor, of type {@link IntType}.
113-
* @throws IOException
114-
*/
11596
private static void buildFromTensorInt(Tensor<Integer> tensor, String memoryName) throws IOException
11697
{
11798
long[] arrayShape = tensor.shape();
@@ -125,14 +106,6 @@ private static void buildFromTensorInt(Tensor<Integer> tensor, String memoryName
125106
if (PlatformDetection.isWindows()) shma.close();
126107
}
127108

128-
/**
129-
* Builds a {@link RandomAccessibleInterval} from a unsigned float32-typed {@link TFloat32} tensor.
130-
*
131-
* @param tensor
132-
* The {@link TFloat32} tensor data is read from.
133-
* @return The {@link RandomAccessibleInterval} built from the tensor, of type {@link FloatType}.
134-
* @throws IOException
135-
*/
136109
private static void buildFromTensorFloat(Tensor<Float> tensor, String memoryName) throws IOException
137110
{
138111
long[] arrayShape = tensor.shape();
@@ -146,14 +119,6 @@ private static void buildFromTensorFloat(Tensor<Float> tensor, String memoryName
146119
if (PlatformDetection.isWindows()) shma.close();
147120
}
148121

149-
/**
150-
* Builds a {@link RandomAccessibleInterval} from a unsigned float64-typed {@link TFloat64} tensor.
151-
*
152-
* @param tensor
153-
* The {@link TFloat64} tensor data is read from.
154-
* @return The {@link RandomAccessibleInterval} built from the tensor, of type {@link DoubleType}.
155-
* @throws IOException
156-
*/
157122
private static void buildFromTensorDouble(Tensor<Double> tensor, String memoryName) throws IOException
158123
{
159124
long[] arrayShape = tensor.shape();
@@ -167,14 +132,6 @@ private static void buildFromTensorDouble(Tensor<Double> tensor, String memoryNa
167132
if (PlatformDetection.isWindows()) shma.close();
168133
}
169134

170-
/**
171-
* Builds a {@link RandomAccessibleInterval} from a unsigned int64-typed {@link TInt64} tensor.
172-
*
173-
* @param tensor
174-
* The {@link TInt64} tensor data is read from.
175-
* @return The {@link RandomAccessibleInterval} built from the tensor, of type {@link LongType}.
176-
* @throws IOException
177-
*/
178135
private static void buildFromTensorLong(Tensor<Long> tensor, String memoryName) throws IOException
179136
{
180137
long[] arrayShape = tensor.shape();

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

+10-71
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,6 @@
2323

2424
import io.bioimage.modelrunner.tensor.shm.SharedMemoryArray;
2525
import io.bioimage.modelrunner.utils.CommonUtils;
26-
import net.imglib2.RandomAccessibleInterval;
27-
import net.imglib2.img.Img;
28-
import net.imglib2.type.numeric.integer.IntType;
29-
import net.imglib2.type.numeric.integer.LongType;
30-
import net.imglib2.type.numeric.integer.UnsignedByteType;
31-
import net.imglib2.type.numeric.real.DoubleType;
32-
import net.imglib2.type.numeric.real.FloatType;
3326
import net.imglib2.util.Cast;
3427

3528
import java.nio.ByteBuffer;
@@ -43,10 +36,9 @@
4336
import org.tensorflow.types.UInt8;
4437

4538
/**
46-
* A TensorFlow 2 {@link Tensor} builder from {@link Img} and
47-
* {@link io.bioimage.modelrunner.tensor.Tensor} objects.
39+
* Utility class to build Tensorflow tensors from shm segments using {@link SharedMemoryArray}
4840
*
49-
* @author Carlos Garcia Lopez de Haro and Daniel Felipe Gonzalez Obando
41+
* @author Carlos Garcia Lopez de Haro
5042
*/
5143
public final class TensorBuilder {
5244

@@ -56,16 +48,13 @@ public final class TensorBuilder {
5648
private TensorBuilder() {}
5749

5850
/**
59-
* Creates {@link TType} instance with the same size and information as the
60-
* given {@link RandomAccessibleInterval}.
51+
* Creates {@link Tensor} instance from a {@link SharedMemoryArray}
6152
*
62-
* @param <T>
63-
* the ImgLib2 data types the {@link RandomAccessibleInterval} can be
6453
* @param array
65-
* the {@link RandomAccessibleInterval} that is going to be converted into
66-
* a {@link TType} tensor
67-
* @return a {@link TType} tensor
68-
* @throws IllegalArgumentException if the type of the {@link RandomAccessibleInterval}
54+
* the {@link SharedMemoryArray} that is going to be converted into
55+
* a {@link Tensor} tensor
56+
* @return the Tensorflow {@link Tensor} as the one stored in the shared memory segment
57+
* @throws IllegalArgumentException if the type of the {@link SharedMemoryArray}
6958
* is not supported
7059
*/
7160
public static Tensor<?> build(SharedMemoryArray array) throws IllegalArgumentException
@@ -91,17 +80,7 @@ else if (array.getOriginalDataType().equals("int64")) {
9180
}
9281
}
9382

94-
/**
95-
* Creates a {@link TType} tensor of type {@link TUint8} from an
96-
* {@link RandomAccessibleInterval} of type {@link UnsignedByteType}
97-
*
98-
* @param tensor
99-
* The {@link RandomAccessibleInterval} to fill the tensor with.
100-
* @return The {@link TType} tensor filled with the {@link RandomAccessibleInterval} data.
101-
* @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
102-
* not compatible
103-
*/
104-
public static Tensor<UInt8> buildUByte(SharedMemoryArray tensor)
83+
private static Tensor<UInt8> buildUByte(SharedMemoryArray tensor)
10584
throws IllegalArgumentException
10685
{
10786
long[] ogShape = tensor.getOriginalShape();
@@ -115,17 +94,7 @@ public static Tensor<UInt8> buildUByte(SharedMemoryArray tensor)
11594
return ndarray;
11695
}
11796

118-
/**
119-
* Creates a {@link TInt32} tensor of type {@link TInt32} from an
120-
* {@link RandomAccessibleInterval} of type {@link IntType}
121-
*
122-
* @param tensor
123-
* The {@link RandomAccessibleInterval} to fill the tensor with.
124-
* @return The {@link TInt32} tensor filled with the {@link RandomAccessibleInterval} data.
125-
* @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
126-
* not compatible
127-
*/
128-
public static Tensor<Integer> buildInt(SharedMemoryArray tensor)
97+
private static Tensor<Integer> buildInt(SharedMemoryArray tensor)
12998
throws IllegalArgumentException
13099
{
131100
long[] ogShape = tensor.getOriginalShape();
@@ -142,16 +111,6 @@ public static Tensor<Integer> buildInt(SharedMemoryArray tensor)
142111
return ndarray;
143112
}
144113

145-
/**
146-
* Creates a {@link TInt64} tensor of type {@link TInt64} from an
147-
* {@link RandomAccessibleInterval} of type {@link LongType}
148-
*
149-
* @param tensor
150-
* The {@link RandomAccessibleInterval} to fill the tensor with.
151-
* @return The {@link TInt64} tensor filled with the {@link RandomAccessibleInterval} data.
152-
* @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
153-
* not compatible
154-
*/
155114
private static Tensor<Long> buildLong(SharedMemoryArray tensor)
156115
throws IllegalArgumentException
157116
{
@@ -169,17 +128,7 @@ private static Tensor<Long> buildLong(SharedMemoryArray tensor)
169128
return ndarray;
170129
}
171130

172-
/**
173-
* Creates a {@link TFloat32} tensor of type {@link TFloat32} from an
174-
* {@link RandomAccessibleInterval} of type {@link FloatType}
175-
*
176-
* @param tensor
177-
* The {@link RandomAccessibleInterval} to fill the tensor with.
178-
* @return The {@link TFloat32} tensor filled with the {@link RandomAccessibleInterval} data.
179-
* @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
180-
* not compatible
181-
*/
182-
public static Tensor<Float> buildFloat(SharedMemoryArray tensor)
131+
private static Tensor<Float> buildFloat(SharedMemoryArray tensor)
183132
throws IllegalArgumentException
184133
{
185134
long[] ogShape = tensor.getOriginalShape();
@@ -196,16 +145,6 @@ public static Tensor<Float> buildFloat(SharedMemoryArray tensor)
196145
return ndarray;
197146
}
198147

199-
/**
200-
* Creates a {@link TFloat64} tensor of type {@link TFloat64} from an
201-
* {@link RandomAccessibleInterval} of type {@link DoubleType}
202-
*
203-
* @param tensor
204-
* The {@link RandomAccessibleInterval} to fill the tensor with.
205-
* @return The {@link TFloat64} tensor filled with the {@link RandomAccessibleInterval} data.
206-
* @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
207-
* not compatible
208-
*/
209148
private static Tensor<Double> buildDouble(SharedMemoryArray tensor)
210149
throws IllegalArgumentException
211150
{

0 commit comments

Comments
 (0)