Skip to content

Commit 466f35e

Browse files
committed
update magicoder results
1 parent 569dce3 commit 466f35e

File tree

9 files changed

+90765
-70601
lines changed

9 files changed

+90765
-70601
lines changed

drivers/cpp/cpp_driver_wrapper.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ def run(self, executable: PathLike, **run_config) -> RunOutput:
106106
run_process = run_command(launch_cmd, timeout=self.run_timeout, dry=self.dry)
107107
except subprocess.TimeoutExpired as e:
108108
return RunOutput(-1, str(e.stdout), f"[Timeout] {str(e.stderr)}", config=run_config)
109+
except UnicodeDecodeError as e:
110+
logging.warning(f"UnicodeDecodeError: {str(e)}\nRunnning command: {launch_cmd}")
111+
return RunOutput(-1, "", f"UnicodeDecodeError: {str(e)}", config=run_config)
109112
return RunOutput(run_process.returncode, run_process.stdout, run_process.stderr, config=run_config)
110113

111114
def test_single_output(self, prompt: str, output: str, test_driver_file: PathLike, problem_size: str) -> GeneratedTextResult:

drivers/run-kokkos.sbatch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export OMP_PROC_BIND=spread
2222
export OMP_PLACES=cores
2323

2424
python run-all.py \
25-
$GENERATED_PROMPTS \
25+
$OUTPUT \
2626
--output $OUTPUT \
2727
--scratch-dir $SCRATCH_DIR \
2828
--launch-configs launch-configs.json \

drivers/run-mpi+omp.sbatch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export OMP_PLACES=cores
2222
export OMPI_MCA_opal_warn_on_missing_libcuda=0
2323

2424
python run-all.py \
25-
$GENERATED_PROMPTS \
25+
$OUTPUT \
2626
--output $OUTPUT \
2727
--scratch-dir $SCRATCH_DIR \
2828
--launch-configs launch-configs.json \

results/015cff6f/magicoder-s-ds-6.7b_temp0.2/cuda.json

Lines changed: 9489 additions & 7175 deletions
Large diffs are not rendered by default.

results/015cff6f/magicoder-s-ds-6.7b_temp0.2/kokkos.json

Lines changed: 13652 additions & 10094 deletions
Large diffs are not rendered by default.

results/015cff6f/magicoder-s-ds-6.7b_temp0.2/mpi+omp.json

Lines changed: 21481 additions & 16357 deletions
Large diffs are not rendered by default.

results/015cff6f/magicoder-s-ds-6.7b_temp0.2/mpi.json

Lines changed: 18029 additions & 16280 deletions
Large diffs are not rendered by default.

results/015cff6f/magicoder-s-ds-6.7b_temp0.2/omp.json

Lines changed: 17597 additions & 12829 deletions
Large diffs are not rendered by default.

results/015cff6f/magicoder-s-ds-6.7b_temp0.2/serial.json

Lines changed: 10512 additions & 7864 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)