File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/main/java/org/beehive/gpullama3/tensor Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ public static GGUF loadGGUFMetadata(Path modelPath) throws IOException {
4949
5050 // Open file
5151 try {
52- System .out .println ("[GGUF] fileChannel = FileChannel.open(modelPath, READ, WRITE);" );
5352 fileChannel = FileChannel .open (modelPath , READ , WRITE );
5453 // Ensure we start reading from the beginning of the file
5554 fileChannel .position (0 );
@@ -141,7 +140,7 @@ public static Map<String, GGMLTensorEntry> loadTensorsStandard(FileChannel fileC
141140 * Loads GGUF tensor data using a TornadoVM-compatible memory layout.
142141 *
143142 * <p>This method parses the GGUF tensor list and memory-maps each tensor
144- * in {@link TornadoNativeArray} layout directly from the underlying{@link FileChannel}.
143+ * in {@link TornadoNativeArray} layout directly from the underlying {@link FileChannel}.
145144 * For compatibility with {@link TornadoNativeArray} layout, an additional header is required at
146145 * the start of each tensor region. To satisfy this requirement, each tensor
147146 * is mapped using {@link FileChannel.MapMode#PRIVATE} starting 16 bytes
You can’t perform that action at this time.
0 commit comments