#!/usr/bin/env swift import Foundation import Metal print("=== Standalone Forward Test ===") print("Start: \(Date())") fflush(stdout) // Load config let modelDir = "/Users/accusys/MarkBaseEngine/models/gemma-4-26b-standard" let configURL = URL(fileURLWithPath: modelDir).appendingPathComponent("config.json") guard FileManager.default.fileExists(atPath: configURL.path) else { print("ERROR: Model not found") exit(1) } print("Config found at \(configURL.path)") fflush(stdout) print("Test completed!")