Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RELEASE] Update version to 0.2.23 #202

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading