Files
mlx-swift-examples/Applications/LLMEval/LLMEvalApp.swift
Ashraful Islam c37018d7d2 feat: adds gpu usages stat in the toolbar (#36)
* feat: adds gpu usages stat in the toolbar
2024-03-25 10:29:54 -07:00

14 lines
216 B
Swift

// Copyright © 2024 Apple Inc.
import SwiftUI
@main
struct LLMEvalApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.environment(DeviceStat())
}
}
}