# profileTiming

A profile timing record carrying label, stage, origin, plannedMs, actualMs, and related state.

Last updated: 2026-09-09

Package: compute.profiling | Status: source-declared

Tags: compute, compute.profiling, cpu, method, profiling, source-example, thing, yeho

Collect and describe compute timing, work, and profiling records.

```yh
external thing profileTiming
```

- text label: Stores label as text.
- text stage: Stores stage as text.
- text origin: Stores origin as text.
- int plannedMs: Stores planned ms as int.
- int actualMs: Stores actual ms as int.
- text note: Stores note as text.
- profileTiming(text label, text stage, text origin, int plannedMs, int actualMs, text note): Profile timing.
- DeltaMs() returns int: Delta ms.
- HasBudget() returns bool: Has budget.
- WithinBudget() returns bool: Within budget.
- Describe() returns text: Describe.

## Use profileTiming

A complete small caller. Values are illustrative; check the returned result and package requirements before connecting live resources.

Verification: type checked

```yh
using compute.profiling

// Collect and describe compute timing, work, and profiling records.
profileTiming sample = profileTiming("Player health", "stage", "origin", 1, 1, "note")
Console.Log(Text.From(sample.label))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.compute_profiling__profiletiming"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "compute.profiling"
version = "0.1.0"
path = "../../../yeho/packages/compute/profiling"

[[dependencies]]
package = "compute.tensor"
version = "0.1.0"
path = "../../../yeho/packages/compute/tensor"

[[dependencies]]
package = "console"
version = "0.1.0"
path = "../../../yeho/packages/console"

[[dependencies]]
package = "diagnostics"
version = "0.1.0"
path = "../../../yeho/packages/diagnostics"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/compute.profiling--profileTiming/usage --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## profileTiming.DeltaMs

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using compute.profiling

// Delta ms.
profileTiming instance = profileTiming("Player health", "stage", "origin", 1, 1, "note")
int result = instance.DeltaMs()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.compute_profiling__profiletiming"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "compute.profiling"
version = "0.1.0"
path = "../../../yeho/packages/compute/profiling"

[[dependencies]]
package = "compute.tensor"
version = "0.1.0"
path = "../../../yeho/packages/compute/tensor"

[[dependencies]]
package = "console"
version = "0.1.0"
path = "../../../yeho/packages/console"

[[dependencies]]
package = "diagnostics"
version = "0.1.0"
path = "../../../yeho/packages/diagnostics"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/compute.profiling--profileTiming/method-DeltaMs-7 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## profileTiming.HasBudget

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using compute.profiling

// Has budget.
profileTiming instance = profileTiming("Player health", "stage", "origin", 1, 1, "note")
bool result = instance.HasBudget()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.compute_profiling__profiletiming"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "compute.profiling"
version = "0.1.0"
path = "../../../yeho/packages/compute/profiling"

[[dependencies]]
package = "compute.tensor"
version = "0.1.0"
path = "../../../yeho/packages/compute/tensor"

[[dependencies]]
package = "console"
version = "0.1.0"
path = "../../../yeho/packages/console"

[[dependencies]]
package = "diagnostics"
version = "0.1.0"
path = "../../../yeho/packages/diagnostics"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/compute.profiling--profileTiming/method-HasBudget-8 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## profileTiming.WithinBudget

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using compute.profiling

// Within budget.
profileTiming instance = profileTiming("Player health", "stage", "origin", 1, 1, "note")
bool result = instance.WithinBudget()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.compute_profiling__profiletiming"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "compute.profiling"
version = "0.1.0"
path = "../../../yeho/packages/compute/profiling"

[[dependencies]]
package = "compute.tensor"
version = "0.1.0"
path = "../../../yeho/packages/compute/tensor"

[[dependencies]]
package = "console"
version = "0.1.0"
path = "../../../yeho/packages/console"

[[dependencies]]
package = "diagnostics"
version = "0.1.0"
path = "../../../yeho/packages/diagnostics"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/compute.profiling--profileTiming/method-WithinBudget-9 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


## profileTiming.Describe

A complete caller for this public method. Sample inputs are illustrative; native resources require their owning lifecycle.

Verification: type checked

```yh
using compute.profiling

// Describe.
profileTiming instance = profileTiming("Player health", "stage", "origin", 1, 1, "note")
text result = instance.Describe()
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.compute_profiling__profiletiming"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

[[dependencies]]
package = "compute.profiling"
version = "0.1.0"
path = "../../../yeho/packages/compute/profiling"

[[dependencies]]
package = "compute.tensor"
version = "0.1.0"
path = "../../../yeho/packages/compute/tensor"

[[dependencies]]
package = "console"
version = "0.1.0"
path = "../../../yeho/packages/console"

[[dependencies]]
package = "diagnostics"
version = "0.1.0"
path = "../../../yeho/packages/diagnostics"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/compute.profiling--profileTiming/method-Describe-10 --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


Package presence and a declaration do not establish support on every host. Host services need their platform and lifecycle setup.

Source: yeho/packages/compute/profiling/profiling.yh

AI training permission: https://demonhunterlabs.com/ai-use
