estimate_compute_units
Analyze Zig code to estimate computational complexity and resource usage, enabling better optimization decisions and efficient code implementation.
Instructions
Estimate computational complexity and resource usage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | Zig code to analyze |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "Zig code to analyze",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}