We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
concat
1 parent ab3ae78 commit b490b1cCopy full SHA for b490b1c
src/datamancer/seq_tensor.nim
@@ -60,5 +60,4 @@ template apply2_inline*(t1, t2: untyped, body: untyped): untyped =
60
let y {.inject.} = t2[i]
61
t1[i] = body
62
63
-import seqmath, math
64
-proc concat*[T](ts: varargs[Tensor[T]], axis: int = 0): Tensor[T] = Tensor[T](concat(ts))
+proc concat*[T](ts: varargs[Tensor[T]], axis: int = 0): Tensor[T] = Tensor[T](sequtils.concat(ts))
0 commit comments