Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Updated Tensorflow dependencies in build.gradle and cleaned up LeNetC…
…lassicWithGPUMemoryConfig.kt
  • Loading branch information
zaleslaw committed Sep 22, 2023
commit f870af88a24a1341514e701202cb3be5b45bea78
6 changes: 3 additions & 3 deletions examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.2'
// to run on GPU (if CUDA is updated and machine with NVIDIA onboard)
implementation 'org.tensorflow:libtensorflow:1.15.0'
implementation 'org.tensorflow:libtensorflow_jni_gpu:1.15.0'
//api 'com.microsoft.onnxruntime:onnxruntime_gpu:1.12.1'
// implementation 'org.tensorflow:libtensorflow:1.15.0'
// implementation 'org.tensorflow:libtensorflow_jni_gpu:1.15.0'
// api 'com.microsoft.onnxruntime:onnxruntime_gpu:1.12.1'

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,6 @@ fun lenetClassicWithGPUMemoryConfig() {
}
}




/** */
fun main(): Unit = lenetClassicWithGPUMemoryConfig()