Skip to content

Commit b490b1c

Browse files
committed
[js] specify which concat called by concat
1 parent ab3ae78 commit b490b1c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/datamancer/seq_tensor.nim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,4 @@ template apply2_inline*(t1, t2: untyped, body: untyped): untyped =
6060
let y {.inject.} = t2[i]
6161
t1[i] = body
6262

63-
import seqmath, math
64-
proc concat*[T](ts: varargs[Tensor[T]], axis: int = 0): Tensor[T] = Tensor[T](concat(ts))
63+
proc concat*[T](ts: varargs[Tensor[T]], axis: int = 0): Tensor[T] = Tensor[T](sequtils.concat(ts))

0 commit comments

Comments
 (0)