File size: 21,088 Bytes
31dc8dc | 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 | import argparse, ast, io, json, os, sys, time, textwrap, multiprocessing as mp
import concurrent.futures as cf
from pathlib import Path
import math
import numpy as np
from termcolor import cprint
from tqdm import tqdm
from omegaconf import DictConfig, ListConfig, OmegaConf, MISSING
def get_config():
cli_conf = OmegaConf.from_cli()
yaml_conf = OmegaConf.load(cli_conf.config)
return OmegaConf.merge(yaml_conf, cli_conf)
from concurrent.futures import as_completed
import textwrap
def _run_many_pipe(snippet: str, tests: list[str], conn):
import textwrap
import sys
import traceback
results = []
debug_info = []
try:
ns = {}
# Normalize line endings to \n before dedent and execution
normalized_snippet = snippet.replace('\r\n', '\n').replace('\r', '\n')
dedented_snippet = textwrap.dedent(normalized_snippet)
debug_info.append(f"Original snippet (repr): {repr(snippet[:200])}")
debug_info.append(f"Normalized snippet (repr): {repr(normalized_snippet[:200])}")
debug_info.append(f"Dedented snippet (repr): {repr(dedented_snippet[:200])}")
# Execute the snippet
exec(dedented_snippet, ns, ns)
debug_info.append(f"Functions in namespace after exec: {[k for k in ns.keys() if not k.startswith('__')]}")
# Run tests
for idx, stmt in enumerate(tests):
try:
exec(stmt, ns, ns)
results.append(True)
debug_info.append(f"Test {idx+1}/{len(tests)} '{stmt}' PASSED")
except SystemExit:
results.append(True)
debug_info.append(f"Test {idx+1}/{len(tests)} '{stmt}' PASSED (SystemExit)")
except AssertionError as e:
results.append(False)
debug_info.append(f"Test {idx+1}/{len(tests)} '{stmt}' FAILED (AssertionError): {e}")
except Exception as e:
results.append(False)
debug_info.append(f"Test {idx+1}/{len(tests)} '{stmt}' FAILED ({type(e).__name__}): {e}")
debug_info.append(f" Traceback: {traceback.format_exc()}")
# Send results with debug info
conn.send((results, debug_info))
except SystemExit as e:
debug_info.append(f"Snippet execution SystemExit: {e}")
conn.send(([True] * len(tests), debug_info))
except Exception as e:
debug_info.append(f"Snippet execution FAILED ({type(e).__name__}): {e}")
debug_info.append(f" Traceback: {traceback.format_exc()}")
conn.send(([False] * len(tests), debug_info))
finally:
try: conn.close()
except Exception: pass
def _check_snippet_many(snippet: str, tests: list[str], t_limit: int,
spawn_slack: float = 5.0, debug_file=None) -> tuple[list[bool], list[str]]:
import time, multiprocessing as mp
import os, sys
ctx = mp.get_context("spawn")
parent_conn, child_conn = ctx.Pipe(duplex=False)
p = ctx.Process(target=_run_many_pipe, args=(snippet, tests, child_conn), daemon=True)
# Start process and close child connection
try:
p.start()
except Exception as e:
child_conn.close()
parent_conn.close()
return ([False] * len(tests), [f"Failed to start process: {e}"])
child_conn.close()
# Increase timeout: t_limit for execution + spawn_slack for process startup/overhead
deadline = time.monotonic() + t_limit + spawn_slack
res = None
debug_info = []
process_exited = False
try:
# Poll for result with timeout
while time.monotonic() < deadline:
if parent_conn.poll(0.1): # Check every 100ms
try:
res = parent_conn.recv()
break
except (EOFError, OSError) as e:
# Connection closed or error
debug_info.append(f"Connection error: {e}")
res = None
break
# Check if process has exited
if not p.is_alive():
process_exited = True
# Try to get result one more time
if parent_conn.poll(0.1):
try:
res = parent_conn.recv()
break
except (EOFError, OSError):
pass
break
# Final attempt to get result
if res is None and parent_conn.poll(0.1):
try:
res = parent_conn.recv()
except (EOFError, OSError):
pass
# If no result, mark as timeout
if res is None:
if p.is_alive():
try:
p.terminate()
p.join(timeout=1.0)
if p.is_alive():
p.kill()
except Exception:
pass
timeout_msg = "Timeout or no response from child process"
if process_exited:
timeout_msg += " (process exited without sending result)"
res = ([False] * len(tests), [timeout_msg])
else:
# Handle both old format (list) and new format (tuple)
if isinstance(res, tuple):
res, debug_info = res
else:
debug_info = ["Legacy format: no debug info"]
except Exception as e:
# Unexpected error
try:
if p.is_alive():
p.terminate()
p.join(timeout=1.0)
except Exception:
pass
res = ([False] * len(tests), [f"Unexpected error in _check_snippet_many: {e}"])
debug_info = []
finally:
# Cleanup
try:
if p.is_alive():
p.terminate()
p.join(timeout=1.0)
except Exception:
pass
try:
parent_conn.close()
except Exception:
pass
# Write debug info to file if provided
if debug_file:
try:
# Ensure directory exists
debug_dir = os.path.dirname(debug_file)
if debug_dir:
os.makedirs(debug_dir, exist_ok=True)
with open(debug_file, 'a', encoding='utf-8') as f:
f.write("=" * 80 + "\n")
f.write(f"Snippet (first 200 chars): {repr(snippet[:200])}\n")
f.write(f"Tests: {tests}\n")
f.write(f"Results: {res}\n")
for line in debug_info:
f.write(line + "\n")
f.write("=" * 80 + "\n\n")
except Exception as e:
# Don't fail silently - at least print to stderr
import sys
print(f"Warning: Could not write to debug file {debug_file}: {e}", file=sys.stderr)
return ([bool(x) for x in res], debug_info)
from concurrent.futures import ThreadPoolExecutor, as_completed
def evaluate_function_dataset(data: list[dict], n_workers: int | None = None, debug_file: str | None = None):
import os
import time
n_cpu = os.cpu_count() or 4
n_workers = max(1, int(n_workers)) if n_workers is not None else n_cpu
# Create debug file if not provided
if debug_file is None:
debug_file = "./tmp/execute_debug.log"
# Ensure directory exists
debug_dir = os.path.dirname(debug_file)
if debug_dir:
os.makedirs(debug_dir, exist_ok=True)
# Clear debug file at start
try:
with open(debug_file, 'w', encoding='utf-8') as f:
f.write(f"Debug log started at {time.strftime('%Y-%m-%d %H:%M:%S')}\n\n")
print(f"Debug log file: {os.path.abspath(debug_file)}")
except Exception as e:
print(f"Warning: Could not create debug file {debug_file}: {e}", file=sys.stderr)
for item in data:
m_code = len(item["extracted_output"])
m_test = len(item["test_list"])
item["execution_result"] = [[None] * m_test for _ in range(m_code)]
item["correctness"] = [[False] * m_test for _ in range(m_code)]
item.setdefault("step_map", [])
tasks = []
for idx, item in enumerate(data):
t_limit = item.get("test_time_limit", 1)
tests = item["test_list"]
for i, snippet in enumerate(item["extracted_output"]):
tasks.append((idx, i, snippet, tests, t_limit))
futures = {}
from tqdm.auto import tqdm
with ThreadPoolExecutor(max_workers=n_workers) as pool, \
tqdm(total=len(tasks)*len(data[0]["test_list"]), desc=f"Function tests ({n_workers} threads)",
dynamic_ncols=True, mininterval=0.1, miniters=1) as pbar:
for idx, i, snippet, tests, t_limit in tasks:
fut = pool.submit(_check_snippet_many, snippet, tests, t_limit, debug_file=debug_file)
futures[fut] = (idx, i)
for fut in as_completed(futures):
idx, i = futures[fut]
try:
result = fut.result()
# Handle both old format (list) and new format (tuple)
if isinstance(result, tuple):
ok_list, debug_info = result
# Write debug info to file for failed cases
if any(not ok for ok in ok_list):
try:
with open(debug_file, 'a', encoding='utf-8') as f:
f.write(f"\n[FAILED CASE] Item {idx}, Code {i}\n")
f.write(f"Tests: {data[idx]['test_list']}\n")
f.write(f"Results: {ok_list}\n")
for line in debug_info:
f.write(line + "\n")
except Exception:
pass
else:
ok_list = result
except Exception as e:
ok_list = [False] * len(data[idx]["test_list"])
try:
with open(debug_file, 'a', encoding='utf-8') as f:
f.write(f"\n[EXCEPTION] Item {idx}, Code {i}: {e}\n")
except Exception:
pass
# Ensure ok_list is a list and matches the expected number of tests
expected_tests = len(data[idx]["test_list"])
if not isinstance(ok_list, list):
ok_list = [False] * expected_tests
try:
with open(debug_file, 'a', encoding='utf-8') as f:
f.write(f"\n[TYPE ERROR] Item {idx}, Code {i}: "
f"ok_list is not a list, got {type(ok_list)}\n")
except Exception:
pass
elif len(ok_list) != expected_tests:
# Log the mismatch for debugging before fixing
original_len = len(ok_list)
try:
with open(debug_file, 'a', encoding='utf-8') as f:
f.write(f"\n[LENGTH MISMATCH] Item {idx}, Code {i}: "
f"Expected {expected_tests} tests, got {original_len} results\n")
except Exception:
pass
# Pad or truncate to match expected length
if len(ok_list) < expected_tests:
ok_list = ok_list + [False] * (expected_tests - len(ok_list))
else:
ok_list = ok_list[:expected_tests]
# Ensure execution_result and correctness lists are properly initialized
if i >= len(data[idx]["execution_result"]):
# Extend if needed
while len(data[idx]["execution_result"]) <= i:
data[idx]["execution_result"].append([None] * expected_tests)
data[idx]["correctness"].append([False] * expected_tests)
elif len(data[idx]["execution_result"][i]) != expected_tests:
# Resize if needed
data[idx]["execution_result"][i] = [None] * expected_tests
data[idx]["correctness"][i] = [False] * expected_tests
for j, ok in enumerate(ok_list):
if j < len(data[idx]["execution_result"][i]):
data[idx]["execution_result"][i][j] = bool(ok)
data[idx]["correctness"][i][j] = bool(ok)
pbar.update(1)
return data
def worker_stdio(script, input_val, output_queue):
# Create an iterator over the input lines.
input_lines = iter(input_val.splitlines())
# Override the input() function in the exec context.
def fake_input(prompt=""):
try:
return next(input_lines)
except StopIteration:
raise EOFError("No more input")
# Redirect sys.stdout to capture printed output.
stdout_capture = io.StringIO()
original_stdout = sys.stdout
original_stdin = sys.stdin # Save original stdin
sys.stdout = stdout_capture
sys.stdin = io.StringIO(input_val) # Simulate stdin with input_val
context = {
"__name__": "__main__", # Ensures that `if __name__ == "__main__": ...` will fire
"input": fake_input
}
try:
exec(script, context)
printed_output = stdout_capture.getvalue()
output_queue.put(printed_output)
except SystemExit:
printed_output = stdout_capture.getvalue()
output_queue.put(printed_output)
except Exception as e:
output_queue.put(f"error: {e}")
finally:
sys.stdout = original_stdout
sys.stdin = original_stdin
def run_scripts_with_timeout(scripts, inputs, time_limits, worker, batch_size=100):
results = [None] * len(scripts)
n = len(scripts)
# Process in batches to avoid exhausting file descriptors
for batch_start in range(0, n, batch_size):
batch_end = min(batch_start + batch_size, n)
processes = []
queues = []
deadlines = []
for i in range(batch_start, batch_end):
q = mp.Queue()
p = mp.Process(target=worker, args=(scripts[i], inputs[i], q))
processes.append(p)
queues.append(q)
p.start()
deadlines.append(time.time() + time_limits[i])
while any(p.is_alive() for p in processes):
now = time.time()
for idx, p in enumerate(processes):
i = batch_start + idx
if p.is_alive() and now >= deadlines[idx]:
p.terminate()
results[i] = "Timeout Error"
time.sleep(0.001)
for idx, p in enumerate(processes):
i = batch_start + idx
if results[i] is None:
try:
results[i] = queues[idx].get_nowait()
except Exception as e:
results[i] = f"Execution Error: {e}"
# Clean up processes
for p in processes:
try:
p.join(timeout=0.1)
except Exception:
pass
return results
def test_if_eq(x, y):
return " ".join(x.split()) == " ".join(y.split())
def get_chunk_indices(n, num_chunks):
size, rem = divmod(n, num_chunks)
idx, start = [], 0
for i in range(num_chunks):
extra = 1 if i < rem else 0
end = start + size + extra
idx.append((start, end)); start = end
return idx
from tqdm import tqdm
def run_scripts_with_chunk(code_list, test_input_list, time_limit_list,
worker, num_chunks):
chunks = get_chunk_indices(len(code_list), num_chunks)
exe_results = []
pbar = tqdm(total=len(code_list), desc=f"STDIO tests ({num_chunks} ch)")
for start, end in chunks:
sub_code_list = code_list[start:end]
sub_test_input_list = test_input_list[start:end]
sub_time_limit_list = time_limit_list[start:end]
sub_exe_results = run_scripts_with_timeout(
sub_code_list,
sub_test_input_list,
sub_time_limit_list,
worker
)
exe_results.extend(sub_exe_results)
pbar.update(end - start)
pbar.close()
return exe_results
def evaluate_stdio_dataset(data: list[dict], num_chunks: int):
idx_code, idx_case = [], []
code_list, inp_list, tl_list = [], [], []
for idx, item in enumerate(data):
tl = item.get("test_time_limit", 1)
m_code = len(item["extracted_output"])
m_case = len(item["test_input"])
data[idx]["execution_result"] = [[] for _ in range(m_code)]
data[idx]["correctness"] = [[] for _ in range(m_code)]
item.setdefault("step_map", [])
for c_idx, code in enumerate(item["extracted_output"]):
for k in range(m_case):
idx_code.append((idx, c_idx))
idx_case.append(k)
code_list.append(code)
inp_list.append(item["test_input"][k])
tl_list.append(tl)
exe_results = run_scripts_with_chunk(
code_list, inp_list, tl_list, worker_stdio, num_chunks
)
for i, res in enumerate(exe_results):
idx, c_idx = idx_code[i]
k = idx_case[i]
item = data[idx]
while len(item["execution_result"][c_idx]) < k + 1:
item["execution_result"][c_idx].append("")
item["correctness"][c_idx].append(False)
item["execution_result"][c_idx][k] = res
exp_out = item["test_output"][k]
item["correctness"][c_idx][k] = test_if_eq(res, exp_out)
return data
def main():
cfg = get_config()
project_name = cfg.experiment.project
# Get checkpoint path: evaluation.checkpoint_path > model.pretrained_model > config.model (string)
checkpoint_path = OmegaConf.select(cfg, "evaluation.checkpoint_path", default=MISSING)
if checkpoint_path is MISSING or checkpoint_path is None:
# Support both config.model (string) and config.model.pretrained_model (dict)
if isinstance(cfg.model, str):
pretrained_model = cfg.model
else:
pretrained_model = cfg.model.pretrained_model
else:
pretrained_model = checkpoint_path
# Validate that pretrained_model is set
if pretrained_model is None:
raise ValueError(
"pretrained_model is None. Please set either:\n"
" - evaluation.checkpoint_path in config, or\n"
" - model (as string) or model.pretrained_model in config"
)
dataset = OmegaConf.select(cfg, "evaluation.eval_dataset", default=None)
if dataset is None:
raise ValueError("evaluation.eval_dataset is required in config")
outputs_name = "eval-" + pretrained_model.split("/")[-1] + "-" + dataset
output_base = OmegaConf.select(cfg, "experiment.output_dir", default=None) or getattr(cfg.experiment, "output_dir", "..")
output_base = os.path.expanduser(str(output_base))
_script_dir = os.path.dirname(os.path.abspath(__file__))
if not os.path.isabs(output_base):
output_base = os.path.normpath(os.path.join(_script_dir, output_base))
num_node = cfg.evaluation.num_node
node_index = cfg.evaluation.node_index
if num_node > 1:
file_name = os.path.join(output_base, project_name, "temp_data", f"outputs-{node_index}-{outputs_name}.json")
else:
file_name = os.path.join(output_base, project_name, "temp_data", f"outputs-{outputs_name}.json")
with open(file_name, "r", encoding="utf-8") as f:
data = json.load(f)
func_items = [itm for itm in data if itm.get("test_method","function") == "function"]
stdio_items = [itm for itm in data if itm.get("test_method") == "stdio"]
# --- 1) function ---
if func_items:
updated_func = evaluate_function_dataset(func_items, n_workers=cfg.execute.num_chunk)
func_iter = iter(updated_func)
for i,it in enumerate(data):
if it.get("test_method","function") == "function":
data[i] = next(func_iter)
# --- 2) stdio ---
if stdio_items:
total_scripts = sum(len(it["extracted_output"]) for it in stdio_items)
num_chunks = max(1, math.ceil(total_scripts / cfg.execute.num_chunk))
updated_stdio = evaluate_stdio_dataset(stdio_items, num_chunks=num_chunks)
it_stdio = iter(updated_stdio)
for i, it in enumerate(data):
if it.get("test_method") == "stdio":
data[i] = next(it_stdio)
# --- save JSON ---
os.makedirs(os.path.dirname(file_name), exist_ok=True)
with open(file_name, "w", encoding="utf-8", errors="surrogatepass") as f:
json.dump(data, f, indent=2, ensure_ascii=False)
if __name__ == "__main__":
mp.set_start_method("spawn", force=True)
main() |