Sample CodemacOSReviewed 2026-07-21View on Apple Developer

Selecting device objects for compute processing

At a glance

Item Summary
Purpose Switch dynamically between multiple GPUs to efficiently execute a compute-intensive simulation.
App architecture A C/Objective-C header, Metal, Objective-C sample with the source-visible chain mainAAPLViewControllerAAPLRenderermetal_stdlib / Metal APIs.
Main patterns Delegate or data-source callbacks
Project style 13 scanned source file(s) across C/Objective-C header, Metal, Objective-C, organized around ranked entry, type, and file boundaries.
Execution model No structured execution marker indexed; callback threading requires source review.
State/event model No structured observation or publisher-scheduling marker indexed.
Key frameworks/packages simd, metal_stdlib, stdlib.h, assert.h, Cocoa; these are source dependencies, not architecture labels.

Project structure

Source bundle/
├── Application/
│   ├── main.m
│   ├── AAPLViewController.h
│   └── AAPLViewController.m
├── Renderer/
│   ├── AAPLRenderer.m
│   ├── AAPLRenderer.h
│   ├── AAPLShaders.metal
│   ├── AAPLMathUtilities.h
│   ├── AAPLMathUtilities.m
│   └── AAPLShaderTypes.h
└── Simulation/
    ├── AAPLSimulation.h
    ├── AAPLSimulation.m
    └── AAPLKernelTypes.h

Structure observations

  • Architecturally prominent files are ranked from entry points and role-named declarations; resource-only paths are omitted.
  • Primary languages: C/Objective-C header, Metal, Objective-C.
  • The verified tree contains 5 project/configuration file(s) and 4 source declaration(s).

Overall architecture

Reference code

Application/main.m:10 — architecture anchor

int main(int argc, const char * argv[]) {
    return NSApplicationMain(argc, argv);
}

Interpretation

The arrows summarize the source-visible entry, role-named types or folders, and framework direction; when nodes come from structural folders, the sequence is a high-level interpretation rather than proof that every adjacent node calls the next. Ownership is claimed only where the next section cites a stored property or assignment. The diagram is intentionally limited to the dominant path into Metal.

Ownership and state

Ownership evidence

Renderer/AAPLRenderer.h:29 — stored dependency or nearest verified ownership anchor

@interface AAPLRenderer : NSObject
// ...
@property (nonatomic, readonly, nonnull) id<MTLDevice> device;
// ...
@end
Owner Object or state Relationship Mutation authority
AAPLRenderer id (device) stores or receives The declaring implementation writes; property clients read
AAPLSimulation BOOL (halt) stores or receives Header-visible collaborators

Composition arrows indicate a source-visible construction expression or locally owned value state; aggregation means the owner stores or receives a dependency without proving exclusive lifetime ownership.

Concurrency, scheduling, and thread safety

Evidence limit: actor isolation, async/await, or Task creation does not by itself prove background-thread execution; Sendable conformance alone does not prove thread-safe mutation.

No source-visible execution, scheduling, or synchronization boundary was found in the indexed source.

@MainActor/MainActor.run, DispatchQueue.main, and RunLoop.main are reported as distinct isolation, queue, and event-loop mechanisms. A plain Task is kept separate from Task.detached; neither is labeled as a background thread.

State propagation, frameworks, and dependencies

Evidence limit: an import proves a source-level compilation dependency at the cited line; it does not prove runtime use, architectural adoption, or whether a Swift package is a direct application dependency.

Category Mechanism or module Verified role Evidence
Source import simd The cited file imports this module; runtime use and architectural role are not inferred. Renderer/AAPLMathUtilities.h:9
Source import metal_stdlib The cited file imports this module; runtime use and architectural role are not inferred. Renderer/AAPLShaders.metal:8
Source import stdlib.h The cited file imports this module; runtime use and architectural role are not inferred. Renderer/AAPLMathUtilities.h:8
Source import assert.h The cited file imports this module; runtime use and architectural role are not inferred. Renderer/AAPLMathUtilities.m:20
Source import Cocoa The cited file imports this module; runtime use and architectural role are not inferred. Application/main.m:8
Source import Foundation The cited file imports this module; runtime use and architectural role are not inferred. Simulation/AAPLSimulation.h:8

receive(on:) describes downstream delivery scheduling, while subscribe(on:) describes upstream subscription/request/cancel scheduling. An import Combine alone establishes neither behavior nor a Store, reducer, Redux, or other application architecture.

Class and protocol design

Application/AAPLViewController.h:14 — representative type boundary

@interface AAPLViewController : NSViewController<MTKViewDelegate>

@end
Type Responsibility Depends on or conforms to
AAPLViewController View lifecycle, callbacks, and feature coordination NSViewController, MTKViewDelegate
AAPLRenderer Owns drawing, GPU, or presentation processing NSObject
ColorInOut Represents a feature value or composable behavior Concrete collaborators/imported frameworks
AAPLSimulation Defines a feature-specific type boundary NSObject

No local protocol conformance is claimed as protocol-oriented design; external framework conformances are listed only as dependencies.

Access control

Symbol Access Verified effect Likely rationale
device (Renderer/AAPLRenderer.h:29) header-visible The declaration is exposed to translation units that import the header. Inference: declare a contract needed by other Objective-C/C translation units.
halt (Simulation/AAPLSimulation.h:62) header-visible The declaration is exposed to translation units that import the header. Inference: declare a contract needed by other Objective-C/C translation units.
AAPLRenderer (Renderer/AAPLRenderer.m:7) language/file boundary Visibility follows header/implementation and language linkage rules. Inference: the language’s file or module boundary is sufficient for this sample collaboration.

Reference code

Renderer/AAPLRenderer.h:29 — representative boundary

@interface AAPLRenderer : NSObject
// ...
@property (nonatomic, readonly, nonnull) id<MTLDevice> device;
// ...
@end

Swift declarations without a modifier are internal; explicit private, fileprivate, private(set), public, or open entries above are interpreted by language semantics. Objective-C/C samples instead rely on header and implementation boundaries, which are not equivalent to Swift lexical privacy.

Logic ownership and placement

Logic Owning type or file Placement rationale
View lifecycle, callbacks, and feature coordination AAPLViewController The source’s Controller suffix makes this role explicit.
Owns drawing, GPU, or presentation processing AAPLRenderer The source’s Renderer suffix makes this role explicit.

Design patterns

Pattern Source evidence Purpose or tradeoff
Delegate or data-source callbacks Application/AAPLViewController.h:14 Callback protocols invert event delivery back into the sample’s owner.

Main application flow

Reference code

Renderer/AAPLRenderer.m:360drawWithCommandBuffer()

@implementation AAPLRenderer
// ...
        [commandBuffer presentDrawable:view.currentDrawable];
// ...
@end

Naming conventions

  • Types: Controller: AAPLViewController; Renderer: AAPLRenderer.
  • Protocols: no local protocol declaration in the scanned source.
  • Methods: initWithMetalKitView, generateGaussianMap, loadMetal, setNumRenderBodies, updateProjectionMatrixWithSize, setRenderScale, drawableSizeWillChange, updateState.
  • Files: Renderer/AAPLRenderer.m, Application/AAPLViewController.h, Application/AAPLViewController.m, Renderer/AAPLRenderer.h, Simulation/AAPLSimulation.h, Simulation/AAPLSimulation.m.

Architecture takeaways

  • main is the main source-visible entry or composition anchor for this sample.
  • Framework work reaches simd, metal_stdlib, Cocoa, Metal through a deliberately small high-level chain; the detailed API graph remains inside the cited implementation files.
  • Stored-property evidence identifies lifecycle collaboration; it does not by itself prove exclusive object ownership.
  • Access-control conclusions separate verified language visibility from the likely design rationale.
  • The source does not justify labeling the design protocol-oriented.

Source map

Source file Relevant symbols
Application/main.m Cited implementation, Cocoa, Feature implementation
Renderer/AAPLRenderer.h Cited implementation, device, AAPLRenderer
Application/AAPLViewController.h AAPLViewController, Cited implementation
Simulation/AAPLSimulation.h halt, Foundation, AAPLSimulation
Renderer/AAPLRenderer.m AAPLRenderer
Renderer/AAPLMathUtilities.h simd, stdlib.h, Feature implementation
Renderer/AAPLShaders.metal metal_stdlib, ColorInOut
Renderer/AAPLMathUtilities.m assert.h, Feature implementation
Application/AAPLViewController.m AAPLViewController
Simulation/AAPLSimulation.m AAPLSimulation
Renderer/AAPLShaderTypes.h Feature implementation
Simulation/AAPLKernelTypes.h Feature implementation
Simulation/AAPLKernels.metal Feature implementation