@@ -126,7 +126,7 @@ private static OnnxTensor buildByte(RandomAccessibleInterval<ByteType> tensor, O
126
126
long [] ogShape = tensor .dimensionsAsLongArray ();
127
127
if (CommonUtils .int32Overflows (ogShape , 1 ))
128
128
throw new IllegalArgumentException ("Provided tensor with shape " + Arrays .toString (ogShape )
129
- + " is too big. Max number of elements per tensor supported: " + Integer .MAX_VALUE );
129
+ + " is too big. Max number of elements per byte tensor supported: " + Integer .MAX_VALUE );
130
130
tensor = Utils .transpose (tensor );
131
131
long [] tensorShape = tensor .dimensionsAsLongArray ();
132
132
int size = 1 ;
@@ -164,7 +164,7 @@ private static OnnxTensor buildInt(RandomAccessibleInterval<IntType> tensor, Ort
164
164
long [] ogShape = tensor .dimensionsAsLongArray ();
165
165
if (CommonUtils .int32Overflows (ogShape , 4 ))
166
166
throw new IllegalArgumentException ("Provided tensor with shape " + Arrays .toString (ogShape )
167
- + " is too big. Max number of elements per tensor supported: " + Integer .MAX_VALUE / 4 );
167
+ + " is too big. Max number of elements per int tensor supported: " + Integer .MAX_VALUE / 4 );
168
168
tensor = Utils .transpose (tensor );
169
169
long [] tensorShape = tensor .dimensionsAsLongArray ();
170
170
int size = 1 ;
@@ -202,7 +202,7 @@ private static OnnxTensor buildFloat(RandomAccessibleInterval<FloatType> tensor,
202
202
long [] ogShape = tensor .dimensionsAsLongArray ();
203
203
if (CommonUtils .int32Overflows (ogShape , 4 ))
204
204
throw new IllegalArgumentException ("Provided tensor with shape " + Arrays .toString (ogShape )
205
- + " is too big. Max number of elements per tensor supported: " + Integer .MAX_VALUE / 4 );
205
+ + " is too big. Max number of elements per float tensor supported: " + Integer .MAX_VALUE / 4 );
206
206
tensor = Utils .transpose (tensor );
207
207
long [] tensorShape = tensor .dimensionsAsLongArray ();
208
208
int size = 1 ;
@@ -240,7 +240,7 @@ private static OnnxTensor buildDouble(RandomAccessibleInterval<DoubleType> tenso
240
240
long [] ogShape = tensor .dimensionsAsLongArray ();
241
241
if (CommonUtils .int32Overflows (ogShape , 8 ))
242
242
throw new IllegalArgumentException ("Provided tensor with shape " + Arrays .toString (ogShape )
243
- + " is too big. Max number of elements per tensor supported: " + Integer .MAX_VALUE / 8 );
243
+ + " is too big. Max number of elements per double tensor supported: " + Integer .MAX_VALUE / 8 );
244
244
tensor = Utils .transpose (tensor );
245
245
long [] tensorShape = tensor .dimensionsAsLongArray ();
246
246
int size = 1 ;
0 commit comments