-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathfunction_optimizer.py
More file actions
231 lines (198 loc) · 9.8 KB
/
function_optimizer.py
File metadata and controls
231 lines (198 loc) · 9.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
from __future__ import annotations
import hashlib
from collections import defaultdict
from pathlib import Path
from typing import TYPE_CHECKING, Any
from codeflash.cli_cmds.console import logger
from codeflash.code_utils.code_utils import encoded_tokens_len, get_run_tmp_file
from codeflash.code_utils.config_consts import (
OPTIMIZATION_CONTEXT_TOKEN_LIMIT,
READ_WRITABLE_LIMIT_ERROR,
TESTGEN_CONTEXT_TOKEN_LIMIT,
TESTGEN_LIMIT_ERROR,
TOTAL_LOOPING_TIME_EFFECTIVE,
)
from codeflash.either import Failure, Success
from codeflash.languages.function_optimizer import FunctionOptimizer
from codeflash.models.models import (
CodeOptimizationContext,
CodeString,
CodeStringsMarkdown,
FunctionSource,
TestingMode,
TestResults,
)
from codeflash.verification.equivalence import compare_test_results
if TYPE_CHECKING:
from codeflash.either import Result
from codeflash.languages.base import CodeContext, HelperFunction
from codeflash.models.models import CoverageData, OriginalCodeBaseline, TestDiff
class JavaScriptFunctionOptimizer(FunctionOptimizer):
def get_code_optimization_context(self) -> Result[CodeOptimizationContext, str]:
from codeflash.languages import get_language_support
from codeflash.languages.base import Language
language = Language(self.function_to_optimize.language)
lang_support = get_language_support(language)
try:
code_context = lang_support.extract_code_context(
self.function_to_optimize, self.project_root, self.project_root
)
return Success(
self._build_optimization_context(
code_context,
self.function_to_optimize.file_path,
self.function_to_optimize.language,
self.project_root,
)
)
except ValueError as e:
return Failure(str(e))
def should_check_coverage(self) -> bool:
return True
@staticmethod
def _build_optimization_context(
code_context: CodeContext,
file_path: Path,
language: str,
project_root: Path,
optim_token_limit: int = OPTIMIZATION_CONTEXT_TOKEN_LIMIT,
testgen_token_limit: int = TESTGEN_CONTEXT_TOKEN_LIMIT,
) -> CodeOptimizationContext:
imports_code = "\n".join(code_context.imports) if code_context.imports else ""
try:
target_relative_path = file_path.resolve().relative_to(project_root.resolve())
except ValueError:
target_relative_path = file_path
helpers_by_file: dict[Path, list[HelperFunction]] = defaultdict(list)
helper_function_sources = []
for helper in code_context.helper_functions:
helpers_by_file[helper.file_path].append(helper)
helper_function_sources.append(
FunctionSource(
file_path=helper.file_path,
qualified_name=helper.qualified_name,
fully_qualified_name=helper.qualified_name,
only_function_name=helper.name,
source_code=helper.source_code,
)
)
target_file_code = code_context.target_code
same_file_helpers = helpers_by_file.get(file_path, [])
if same_file_helpers:
helper_code = "\n\n".join(h.source_code for h in same_file_helpers)
target_file_code = target_file_code + "\n\n" + helper_code
if imports_code:
target_file_code = imports_code + "\n\n" + target_file_code
read_writable_code_strings = [
CodeString(code=target_file_code, file_path=target_relative_path, language=language)
]
for helper_file_path, file_helpers in helpers_by_file.items():
if helper_file_path == file_path:
continue
try:
helper_relative_path = helper_file_path.resolve().relative_to(project_root.resolve())
except ValueError:
helper_relative_path = helper_file_path
combined_helper_code = "\n\n".join(h.source_code for h in file_helpers)
read_writable_code_strings.append(
CodeString(code=combined_helper_code, file_path=helper_relative_path, language=language)
)
read_writable_code = CodeStringsMarkdown(code_strings=read_writable_code_strings, language=language)
testgen_context = CodeStringsMarkdown(code_strings=read_writable_code_strings.copy(), language=language)
read_writable_tokens = encoded_tokens_len(read_writable_code.markdown)
if read_writable_tokens > optim_token_limit:
raise ValueError(READ_WRITABLE_LIMIT_ERROR)
testgen_tokens = encoded_tokens_len(testgen_context.markdown)
if testgen_tokens > testgen_token_limit:
raise ValueError(TESTGEN_LIMIT_ERROR)
code_hash = hashlib.sha256(read_writable_code.flat.encode("utf-8")).hexdigest()
return CodeOptimizationContext(
testgen_context=testgen_context,
read_writable_code=read_writable_code,
read_only_context_code=code_context.read_only_context,
hashing_code_context=read_writable_code.flat,
hashing_code_context_hash=code_hash,
helper_functions=helper_function_sources,
testgen_helper_fqns=[fs.fully_qualified_name for fs in helper_function_sources],
preexisting_objects=set(),
)
def compare_candidate_results(
self,
baseline_results: OriginalCodeBaseline,
candidate_behavior_results: TestResults,
optimization_candidate_index: int,
) -> tuple[bool, list[TestDiff]]:
original_sqlite = get_run_tmp_file(Path("test_return_values_0.sqlite"))
candidate_sqlite = get_run_tmp_file(Path(f"test_return_values_{optimization_candidate_index}.sqlite"))
if original_sqlite.exists() and candidate_sqlite.exists():
js_root = self.test_cfg.js_project_root or self.project_root
match, diffs = self.language_support.compare_test_results(
original_sqlite, candidate_sqlite, project_root=js_root
)
candidate_sqlite.unlink(missing_ok=True)
else:
match, diffs = compare_test_results(
baseline_results.behavior_test_results, candidate_behavior_results, pass_fail_only=True
)
return match, diffs
def should_skip_sqlite_cleanup(self, testing_type: TestingMode, optimization_iteration: int) -> bool:
return testing_type == TestingMode.BEHAVIOR or optimization_iteration == 0
def parse_line_profile_test_results(
self, line_profiler_output_file: Path | None
) -> tuple[TestResults | dict[str, Any], CoverageData | None]:
if line_profiler_output_file is None or not line_profiler_output_file.exists():
return TestResults(test_results=[]), None
if hasattr(self.language_support, "parse_line_profile_results"):
return self.language_support.parse_line_profile_results(line_profiler_output_file), None
return TestResults(test_results=[]), None
def line_profiler_step(
self, code_context: CodeOptimizationContext, original_helper_code: dict[Path, str], candidate_index: int
) -> dict[str, Any]:
if not hasattr(self.language_support, "instrument_source_for_line_profiler"):
logger.warning(f"Language support for {self.language_support.language} doesn't support line profiling")
return {"timings": {}, "unit": 0, "str_out": ""}
original_source = self.function_to_optimize.file_path.read_text(encoding="utf-8")
try:
line_profiler_output_path = get_run_tmp_file(Path("line_profiler_output.json"))
success = self.language_support.instrument_source_for_line_profiler(
func_info=self.function_to_optimize, line_profiler_output_file=line_profiler_output_path
)
if not success:
return {"timings": {}, "unit": 0, "str_out": ""}
test_env = self.get_test_env(
codeflash_loop_index=0, codeflash_test_iteration=candidate_index, codeflash_tracer_disable=1
)
_test_results, _ = self.run_and_parse_tests(
testing_type=TestingMode.LINE_PROFILE,
test_env=test_env,
test_files=self.test_files,
optimization_iteration=0,
testing_time=TOTAL_LOOPING_TIME_EFFECTIVE,
enable_coverage=False,
code_context=code_context,
line_profiler_output_file=line_profiler_output_path,
)
return self.language_support.parse_line_profile_results(line_profiler_output_path)
except Exception as e:
logger.warning(f"Failed to run line profiling: {e}")
return {"timings": {}, "unit": 0, "str_out": ""}
finally:
self.function_to_optimize.file_path.write_text(original_source, encoding="utf-8")
def replace_function_and_helpers_with_optimized_code(
self,
code_context: CodeOptimizationContext,
optimized_code: CodeStringsMarkdown,
original_helper_code: dict[Path, str],
) -> bool:
from codeflash.languages.code_replacer import replace_function_definitions_for_language
did_update = False
for module_abspath, qualified_names in self.group_functions_by_file(code_context).items():
did_update |= replace_function_definitions_for_language(
function_names=list(qualified_names),
optimized_code=optimized_code,
module_abspath=module_abspath,
project_root_path=self.project_root,
lang_support=self.language_support,
function_to_optimize=self.function_to_optimize,
)
return did_update