From a5d56df23cfe8ee1451d057e68c00c5b90cdc727 Mon Sep 17 00:00:00 2001 From: Saurabh Misra Date: Fri, 27 Dec 2024 11:55:26 -0800 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7f81fe7db..1639690b4 100644 --- a/README.md +++ b/README.md @@ -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. - 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. +- 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 - Verification - System to verify if the optimization candidate has the same functional behavior as the function to optimize.