Skip to content

Commit add6492

Browse files
committed
Remove unneeded type on Tile op
1 parent 92b4a19 commit add6492

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

core/src/main/scala/ONNX.scala

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1130,13 +1130,12 @@ package object onnx {
11301130
(callOp(name, "Tanh", allInputs, map))
11311131
}
11321132
}
1133-
//Missing in NDScala - ready - P1
1133+
11341134
trait TileV6 extends Operator {
11351135
def TileV6[
11361136
@sp T <: UByte | UShort | UInt | ULong | Byte | Short | Int | Long | Float16 | Float | Double | String | Boolean | Complex[Float] |
1137-
Complex[Double]: Numeric,
1138-
@sp T1 <: Long: Numeric
1139-
, Tt <: TensorTypeDenotation, Td <: TensorShapeDenotation, S <: Shape, Tt2 <: TensorTypeDenotation, AxisRepeats <: Indices](
1137+
Complex[Double],
1138+
Tt <: TensorTypeDenotation, Td <: TensorShapeDenotation, S <: Shape, Tt2 <: TensorTypeDenotation, AxisRepeats <: Indices](
11401139
name: String,
11411140
input: Tensor[T, Tuple3[Tt,Td,S]],
11421141
repeats: AxisRepeats)

0 commit comments

Comments
 (0)