fix: a global update of all io paths to gemma/io

This commit is contained in:
Olamiposi Otesile 2026-01-13 18:55:07 +01:00
parent 1c5f712672
commit ec105435bd
2 changed files with 13 additions and 3 deletions

View File

@ -23,8 +23,8 @@ cc_library(
"//:threading_context", "//:threading_context",
"//:tokenizer", "//:tokenizer",
"//compression:compress", "//compression:compress",
"//io", "//gemma/io",
"//io:blob_store", "//gemma/io:blob_store",
"@highway//:hwy", "@highway//:hwy",
], ],
) )

View File

@ -16,7 +16,7 @@ cc_library(
srcs = ["image.cc"], srcs = ["image.cc"],
hdrs = ["image.h"], hdrs = ["image.h"],
deps = [ deps = [
"//io", "//gemma/io",
"@highway//:hwy", "@highway//:hwy",
"@highway//:profiler", "@highway//:profiler",
], ],
@ -59,12 +59,22 @@ cc_test(
"no_tap", "no_tap",
], ],
deps = [ deps = [
":paligemma_helper", ":paligemma_helper",
"@googletest//:gtest_main", # buildcleaner: keep "@googletest//:gtest_main", # buildcleaner: keep
"//:allocator", "//:allocator",
"//:benchmark_helper", "//:benchmark_helper",
"//:configs", "//:configs",
"//:gemma_lib", "//:gemma_lib",
"//gemma/io",
"@highway//:hwy_test_util", "@highway//:hwy_test_util",
], ],
) )