Skip to content

Commit 6068726

Browse files
committed
Remove commented-out code in Model and GGUF to improve code readability and maintainability.
1 parent 39b3b9d commit 6068726

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/main/java/org/beehive/gpullama3/core/model/GGUF.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public static GGUF loadModel(Path modelPath) throws IOException {
4646

4747
// second check to make sure that nothing goes wrong during model loading
4848
try (FileChannel fileChannel = FileChannel.open(modelPath);
49-
// var ignored = Timer.log("Parse " + modelPath)
5049
) {
5150
GGUF gguf = new GGUF();
5251
gguf.loadModelImpl(fileChannel);

src/main/java/org/beehive/gpullama3/model/Model.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ default void runInteractive(Sampler sampler, Options options) {
159159
* @param options
160160
*/
161161
default String runInstructOnce(Sampler sampler, Options options) {
162-
// default void runInstructOnce(Sampler sampler, Options options) {
163162
State state = createNewState();
164163
ChatFormat chatFormat = chatFormat();
165164
TornadoVMMasterPlan tornadoVMPlan = null;

0 commit comments

Comments
 (0)