Skip to content

Commit

Permalink
Merge pull request #202 from JetBrains-Research/release-0.2.23
Browse files Browse the repository at this point in the history
[RELEASE] Update version to 0.2.23
  • Loading branch information
dmitriyb authored Sep 26, 2024
2 parents 5944ca8 + 52c7687 commit a8ff9d6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ it is highly recommended to use KInference TensorFlow.js backend instead for mor
KInference Core dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-core", "0.2.22")
api("io.kinference", "inference-core", "0.2.23")
}
```

Expand All @@ -67,7 +67,7 @@ This backend is recommended for JavaScript projects.
TensorFlow.js backend dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-tfjs", "0.2.22")
api("io.kinference", "inference-tfjs", "0.2.23")
}
```

Expand All @@ -81,14 +81,14 @@ To check on the system requirements, visit the following [link](https://onnxrunt
ONNXRuntime CPU backend dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-ort", "0.2.22")
api("io.kinference", "inference-ort", "0.2.23")
}
```

ONNXRuntime GPU backend dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "inference-ort-gpu", "0.2.22")
api("io.kinference", "inference-ort-gpu", "0.2.23")
}
```

Expand All @@ -104,7 +104,7 @@ Array adapter for the [kmath](https://github.com/SciProgCentre/kmath) library th
Dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "adapter-kmath-{backend_name}", "0.2.22")
api("io.kinference", "adapter-kmath-{backend_name}", "0.2.23")
}
```

Expand All @@ -114,12 +114,12 @@ Array adapter for the [multik](https://github.com/Kotlin/multik) library that wo
Dependency coordinates:
```kotlin
dependencies {
api("io.kinference", "adapter-multik-{backend_name}", "0.2.22")
api("io.kinference", "adapter-multik-{backend_name}", "0.2.23")
}
```

## Getting started
Let us now walk through how to get started with KInference. The latest version of KInference is *0.2.22*
Let us now walk through how to get started with KInference. The latest version of KInference is *0.2.23*

### Setup dependencies repository

Expand All @@ -142,7 +142,7 @@ To enable the backend, you can add the chosen KInference runtime as a dependency

```kotlin
dependencies {
api("io.kinference", "inference-core", "0.2.22")
api("io.kinference", "inference-core", "0.2.23")
}
```

Expand All @@ -160,20 +160,20 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api("io.kinference:inference-api:0.2.22")
api("io.kinference:ndarray-api:0.2.22")
api("io.kinference:inference-api:0.2.23")
api("io.kinference:ndarray-api:0.2.23")
}
}

val jvmMain by getting {
dependencies {
api("io.kinference:inference-core:0.2.22")
api("io.kinference:inference-core:0.2.23")
}
}

val jsMain by getting {
dependencies {
api("io.kinference:inference-tfjs:0.2.22")
api("io.kinference:inference-tfjs:0.2.23")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask

group = "io.kinference"
version = "0.2.22"
version = "0.2.23"

plugins {
alias(libs.plugins.kotlin.multiplatform) apply false
Expand Down

0 comments on commit a8ff9d6

Please sign in to comment.