Skip to content

Commit

Permalink
use 3.6.2-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Dec 8, 2024
1 parent e409386 commit 5590bb7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
8 changes: 4 additions & 4 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import mill.api.Result
import com.goyeau.mill.scalafix.ScalafixModule

trait Common extends ScalaModule with PublishModule with ScalafixModule {
def scalaVersion = "3.5.2"
def scalaVersion = "3.6.2-RC2"

def publishVersion = VcsVersion.vcsState().format()

Expand Down Expand Up @@ -191,10 +191,10 @@ object jsSite extends SiteJSModule {
}
}

object integration extends ScalaModule with CommonTests {
def scalaVersion: T[String] = vecxt.jvm.scalaVersion
// object integration extends ScalaModule with CommonTests {
// def scalaVersion: T[String] = vecxt.jvm.scalaVersion

}
// }

// note that scastic won't work, as I don't think we can start a JVM with the incubator flag.
object site extends SiteModule {
Expand Down
2 changes: 1 addition & 1 deletion jsSite/src/PlotElements.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package vecxt.plot

import scala.NamedTuple.AnyNamedTuple
import scala.NamedTuple.*
import scala.annotation.meta.field
import upickle.default.*
import NamedTupleReadWriter.given
Expand Down
1 change: 0 additions & 1 deletion vecxt/jvm/src/arrays.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import jdk.incubator.vector.ByteVector
import jdk.incubator.vector.DoubleVector
import jdk.incubator.vector.VectorOperators
import jdk.incubator.vector.IntVector
import scala.util.control.Breaks.*

object arrays:

Expand Down
3 changes: 1 addition & 2 deletions vecxt/jvm/src/doublematrix.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import vecxt.BoundsCheck.BoundsCheck
import vecxt.DoubleArrays.*
import vecxt.MatrixInstance.*
import vecxt.matrix.*
import vecxt.arrays.*

import dev.ludovic.netlib.blas.JavaBLAS.getInstance as blas

Expand Down Expand Up @@ -40,7 +39,7 @@ object JvmDoubleMatrix:
// inline def *:*=(d: Double): Unit = m.raw.multInPlace(d)

inline def >=(d: Double): Matrix[Boolean] =
Matrix[Boolean](m.raw gte d, m.shape)(using BoundsCheck.DoBoundsCheck.no)
Matrix[Boolean](m.raw.gte(d), m.shape)(using BoundsCheck.DoBoundsCheck.no)

inline def >(d: Double): Matrix[Boolean] =
Matrix[Boolean](m.raw.gt(d), m.shape)(using BoundsCheck.DoBoundsCheck.no)
Expand Down
1 change: 0 additions & 1 deletion vecxt/src/doublearray.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package vecxt

import narr.*

import vecxt.JsNativeDoubleArrays.*

import arrays.*
Expand Down

0 comments on commit 5590bb7

Please sign in to comment.