Native: move samples to backend.native/tests/

This commit is contained in:
Svyatoslav Scherbina
2022-08-26 11:50:39 +02:00
committed by Space
parent b7337d2e64
commit 7bf6d64cfb
94 changed files with 94 additions and 93 deletions
@@ -0,0 +1,49 @@
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
plugins {
kotlin("multiplatform")
}
val kotlinNativeDataPath = System.getenv("KONAN_DATA_DIR")?.let { File(it) }
?: File(System.getProperty("user.home")).resolve(".konan")
val tensorflowHome = kotlinNativeDataPath.resolve("third-party/tensorflow")
kotlin {
// Determine host preset.
val hostOs = System.getProperty("os.name")
// Create target for the host platform.
val hostTarget = when {
hostOs == "Mac OS X" -> macosX64("tensorflow")
hostOs == "Linux" -> linuxX64("tensorflow")
// Windows is not supported
else -> throw GradleException("Host OS '$hostOs' is not supported in Kotlin/Native $project.")
}
hostTarget.apply {
binaries {
executable {
entryPoint = "sample.tensorflow.main"
linkerOpts("-L${tensorflowHome.resolve("lib")}", "-ltensorflow")
runTask?.environment(
"LD_LIBRARY_PATH" to tensorflowHome.resolve("lib"),
"DYLD_LIBRARY_PATH" to tensorflowHome.resolve("lib")
)
}
}
compilations["main"].cinterops {
val tensorflow by creating {
includeDirs(tensorflowHome.resolve("include"))
}
}
}
}
val downloadTensorflow by tasks.creating(Exec::class) {
workingDir = projectDir
commandLine("./downloadTensorflow.sh")
}
val tensorflow: KotlinNativeTarget by kotlin.targets
tasks[tensorflow.compilations["main"].cinterops["tensorflow"].interopProcessingTaskName].dependsOn(downloadTensorflow)