Update README.md

This commit is contained in:
Saurabh Misra 2024-12-27 11:55:26 -08:00 committed by GitHub
parent 5525a67598
commit a5d56df23c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,6 +22,8 @@ post clone run `npm install` to install all the dependencies at root level.
- Function to Optimize - The target function that we want to optimize. - Function to Optimize - The target function that we want to optimize.
- Optimization Candidate - generated code that we think might be an optimization of the code to optimize. - Optimization Candidate - generated code that we think might be an optimization of the code to optimize.
- Helper function - This a function being called by, and is under the code path of the function to optimize. - Helper function - This a function being called by, and is under the code path of the function to optimize.
- Read-Write Context - The part of the code context provided to the LLM that it can modify. Aka - Code To Optimize
- Read-Only Context - The part of the context that is only provided as info to the LLM. It is not expected to be modified.
### Test generation ### Test generation
- Verification - System to verify if the optimization candidate has the same functional behavior as the function to optimize. - Verification - System to verify if the optimization candidate has the same functional behavior as the function to optimize.