Skip to content

Commit

Permalink
Hmmm
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Oct 25, 2024
1 parent 9af60ba commit b7df293
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.12
0.12.0
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ object vecxt extends CrossPlatform {
}
}

object vecxt_extensions extends CrossPlatform {
object vecxtensions extends CrossPlatform {
override def moduleDeps: Seq[CrossPlatform] = Seq(vecxt)
trait Shared extends CrossPlatformScalaModule with Common {
// common `core` settings here
Expand Down Expand Up @@ -173,7 +173,7 @@ object benchmark extends JmhModule with ScalaModule {

object jsSite extends SiteJSModule {

override def moduleDeps = Seq(vecxt.js, vecxt_extensions.js)
override def moduleDeps = Seq(vecxt.js, vecxtensions.js)
override def scalaVersion = vecxt.js.scalaVersion
override def scalaJSVersion = vecxt.js.scalaJSVersion
override def moduleKind = ModuleKind.ESModule
Expand Down
3 changes: 0 additions & 3 deletions vecxt/js/src/matrix.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package vecxt

import narr.*
import jdk.incubator.vector.DoubleVector
import scala.scalajs.js.typedarray.Float64Array
import vecxt.BoundsCheck.BoundsCheck
import vecxt.arrays.*
Expand Down Expand Up @@ -38,8 +37,6 @@ object matrix:

object Matrix:

inline def doubleSpecies = DoubleVector.SPECIES_PREFERRED

inline def apply[T <: Tuple2[Int, Int]](raw: NArray[Double], dim: T)(using
inline boundsCheck: BoundsCheck
): Matrix =
Expand Down
1 change: 0 additions & 1 deletion vecxt/native/src/matrix.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package vecxt

import narr.*
import jdk.incubator.vector.DoubleVector
import vecxt.arrays.*
import vecxt.BoundsCheck.BoundsCheck
import org.ekrich.blas.unsafe.blas
Expand Down
1 change: 0 additions & 1 deletion vecxt/src/rangeExtender.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ inline def range(r: RangeExtender, max: Int): NArray[Int] = r match
case i: Int => NArray(i)

// import narr.*
// import jdk.incubator.vector.DoubleVector

// object Matrix:

Expand Down

0 comments on commit b7df293

Please sign in to comment.