Optimize Decorator¶
Optimizes code for specific metrics while respecting constraints.
Category: Code Generation
Parameters¶
Parameter | Type | Description | Default |
---|---|---|---|
for | enum | The primary optimization target | speed |
constraints | enum | Limitations that must be respected | none |
priority | enum | Trade-off preference when optimizations conflict | balanced |
For Options¶
speed
: execution speed and performancememory
: memory usage and efficiencyreadability
: code clarity and maintainabilitysize
: code size and compactnessnetwork
: network efficiency and reduced data transfer
Constraints Options¶
backwards-compatible
: maintaining backward compatibilityminimal-changes
: making minimal changes to the original codeno-external-dependencies
: using no additional external dependenciessame-api
: preserving the same API interfacenone
: Option: none
Priority Options¶
max-gains
: maximum optimization gains even if it involves more riskmin-risk
: minimal risk approaches even if the optimization gains are smallerbalanced
: a balanced approach between optimization gains and risk
Examples¶
Optimizing code for memory usage with backward compatibility¶
+++Optimize(for=memory, constraints=backwards-compatible, priority=min-risk)
Optimize this image processing function that's consuming too much memory.
The model will optimize the code focusing on memory efficiency, while ensuring backward compatibility and taking a conservative approach to changes.
Optimizing for speed with default constraints¶
The model will focus on improving execution speed with balanced risk approach and no specific constraints.
Model-Specific Implementations¶
gpt-4-turbo¶
Instruction: Please optimize this code for {for}, making sure to follow these constraints: {constraints}. When there are trade-offs to make, prioritize {priority}.
Notes: More explicit instruction format works better with this model.
Implementation Guidance¶
Python code optimization¶
Original Prompt:
Optimize this image processing function that's consuming too much memory:
def process_image(image):
result = []
for x in range(image.width):
for y in range(image.height):
pixel = image.get_pixel(x, y)
result.append(transform_pixel(pixel))
return result
Transformed Prompt:
Optimize the code for memory usage and efficiency while respecting maintaining backward compatibility. When optimizations conflict, prioritize minimal risk approaches even if the optimization gains are smaller.
Optimize this image processing function that's consuming too much memory:
def process_image(image):
result = []
for x in range(image.width):
for y in range(image.height):
pixel = image.get_pixel(x, y)
result.append(transform_pixel(pixel))
return result
Notes: The decorator prepends specific optimization instructions while preserving the original request.
Transformation Details¶
Base Instruction: Optimize the code for {for} while respecting the following constraints: {constraints}. When optimizations conflict, prioritize {priority}.
Placement: prepend
Composition Behavior: accumulate
Parameter Effects:
for
:- When set to
speed
: execution speed and performance - When set to
memory
: memory usage and efficiency - When set to
readability
: code clarity and maintainability - When set to
size
: code size and compactness -
When set to
network
: network efficiency and reduced data transfer -
constraints
: - When set to
backwards-compatible
: maintaining backward compatibility - When set to
minimal-changes
: making minimal changes to the original code - When set to
no-external-dependencies
: using no additional external dependencies -
When set to
same-api
: preserving the same API interface -
priority
: - When set to
max-gains
: maximum optimization gains even if it involves more risk - When set to
min-risk
: minimal risk approaches even if the optimization gains are smaller - When set to
balanced
: a balanced approach between optimization gains and risk
Compatibility¶
- Requires: None
- Conflicts: Refactor
- Compatible Models: gpt-4-turbo, gpt-4o, claude-3-7-sonnet-latest, llama-3.2
- Standard Version: 1.0.0 - 2.0.0
Related Decorators¶
- Explain: Enhances Optimize Can be combined with Explain to request optimization with explanations of the changes made.
- Refactor: Conflicts with Optimize Both decorators attempt to modify code structure which may lead to conflicting instructions.