Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Sep 13, 2024
1 parent 8b61b20 commit 686eff5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vecxt/test/src/TensorExt.test.scala
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class TensorExtensionSuite extends FunSuite:
assertEquals(matrix.cols, 2)
}

test("Matrix row extraction".only) {
test("Matrix row extraction") {
val array = NArray[Double](1.0, 2.0, 3.0, 4.0)
val matrix = Tensors.Matrix(array, (2, 2))
val row = matrix.row(0)
Expand All @@ -139,7 +139,7 @@ class TensorExtensionSuite extends FunSuite:
assertVecEquals(row2, NArray[Double](2.0, 4.0))
}

test("Matrix column extraction".only) {
test("Matrix column extraction") {
val array = NArray[Double](1.0, 2.0, 3.0, 4.0)
val matrix = Tensors.Matrix(array, (2, 2))
val col1 = matrix.col(0)
Expand Down

0 comments on commit 686eff5

Please sign in to comment.