Skip to content

Commit 0406dc6

Browse files
committed
test(gemma): fix stale FunctionGemma GGUF path in integration tests
Six real-model integration tests (RealGemmaLoad/Eager/BakeIrpa/ExternalParam/ DequantDump + GemmaBehavioralAb) pointed at an old workspace path (/home/miso/projects/coral/sl2610-voice-cc-kt/models/...) and failed with "File not found" under -PincludeIntegration. Repoint them to the actual model location (SKaiNET-embedded/sl2610-function-calling/models/), matching GemmaQ5KPackedParityTest. Verified: all 6 pass against skainet 0.30.0 (mavenLocal), -PincludeIntegration.
1 parent a222b2a commit 0406dc6

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

llm-inference/gemma/src/jvmTest/kotlin/sk/ainet/models/gemma/GemmaBehavioralAbTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import kotlin.test.assertEquals
3131
*/
3232
@Tag("integration")
3333
class GemmaBehavioralAbTest {
34-
private val gguf = "/home/miso/projects/coral/sl2610-voice-cc-kt/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
34+
private val gguf = "/home/miso/projects/coral/SKaiNET-embedded/sl2610-function-calling/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
3535

3636
private fun argmax(a: FloatArray): Int {
3737
var bi = 0; var bv = a[0]

llm-inference/gemma/src/jvmTest/kotlin/sk/ainet/models/gemma/RealGemmaBakeIrpaTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import kotlin.test.Test
3535
class RealGemmaBakeIrpaTest {
3636
@Test
3737
fun bakeRealGemmaToIrpa() = runBlocking {
38-
val path = "/home/miso/projects/coral/sl2610-voice-cc-kt/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
38+
val path = "/home/miso/projects/coral/SKaiNET-embedded/sl2610-function-calling/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
3939
val ctx = DirectCpuExecutionContext.create()
4040
val weights = Gemma4WeightLoader(
4141
randomAccessProvider = { JvmRandomAccessSource.open(path) },

llm-inference/gemma/src/jvmTest/kotlin/sk/ainet/models/gemma/RealGemmaDequantDumpTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import kotlin.test.Test
1717
class RealGemmaDequantDumpTest {
1818
@Test
1919
fun dumpDequant() = runBlocking {
20-
val path = "/home/miso/projects/coral/sl2610-voice-cc-kt/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
20+
val path = "/home/miso/projects/coral/SKaiNET-embedded/sl2610-function-calling/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
2121
val ctx = DirectCpuExecutionContext.create()
2222
val weights = Gemma4WeightLoader(
2323
randomAccessProvider = { JvmRandomAccessSource.open(path) },

llm-inference/gemma/src/jvmTest/kotlin/sk/ainet/models/gemma/RealGemmaEagerAbTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import kotlin.test.Test
2424
class RealGemmaEagerAbTest {
2525
@Test
2626
fun eagerLogits() = runBlocking {
27-
val path = "/home/miso/projects/coral/sl2610-voice-cc-kt/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
27+
val path = "/home/miso/projects/coral/SKaiNET-embedded/sl2610-function-calling/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
2828
val ctx = DirectCpuExecutionContext.create()
2929
val weights = Gemma4WeightLoader(
3030
randomAccessProvider = { JvmRandomAccessSource.open(path) },

llm-inference/gemma/src/jvmTest/kotlin/sk/ainet/models/gemma/RealGemmaExternalParamTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import kotlin.test.Test
3232
class RealGemmaExternalParamTest {
3333
@Test
3434
fun externalizeRealGemmaWeights() = runBlocking {
35-
val path = "/home/miso/projects/coral/sl2610-voice-cc-kt/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
35+
val path = "/home/miso/projects/coral/SKaiNET-embedded/sl2610-function-calling/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
3636
val ctx = DirectCpuExecutionContext.create()
3737
val weights = Gemma4WeightLoader(
3838
randomAccessProvider = { JvmRandomAccessSource.open(path) },

llm-inference/gemma/src/jvmTest/kotlin/sk/ainet/models/gemma/RealGemmaLoadTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import kotlin.test.Test
2121
class RealGemmaLoadTest {
2222
@Test
2323
fun loadFunctionGemmaWeights() = runBlocking {
24-
val path = "/home/miso/projects/coral/sl2610-voice-cc-kt/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
24+
val path = "/home/miso/projects/coral/SKaiNET-embedded/sl2610-function-calling/models/functiongemma-physical-ai-v10-Q5_K_M.gguf"
2525
val ctx = DirectCpuExecutionContext.create()
2626
val loader = Gemma4WeightLoader(
2727
randomAccessProvider = { JvmRandomAccessSource.open(path) },

0 commit comments

Comments
 (0)