anonymous4review commited on
Commit
a6ba59e
·
verified ·
1 Parent(s): 495e0ce

Updated README.md to describe newly added supplementary files

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -11,9 +11,9 @@ This file contains a description of the `C2Rust-Bench` dataset, which includes:
11
 
12
  ### 2. `Benchmark.tar`
13
  The `Benchmark.tar` file contains the C and Rust files used in the experiments. The `Benchmark` folder located in `Benchmark.tar` file contains following subfolders:
14
- - **`microbenchmark_set`**:
15
- - This folder contains a small set of C and Rust functions transpiled using 9 different LLMs. This microbenchmarking set is used for a preliminary experiment.
16
- - **`large_set`**:
17
- - This folder contains 15,503 C functions derived from 65 different programs and corresponding Rust functions transpiled using the selected LLM.
18
- - **`C2Rust-Bench`**:
19
- - This folder contains the proposed C2Rust-Bench including C and corresponding Rust functions for transpilation evaluation.
 
11
 
12
  ### 2. `Benchmark.tar`
13
  The `Benchmark.tar` file contains the C and Rust files used in the experiments. The `Benchmark` folder located in `Benchmark.tar` file contains following subfolders:
14
+ - **`microbenchmark_set`**: This folder contains a small set of C and Rust functions transpiled using 9 different LLMs. This microbenchmarking set is used for a preliminary experiment.
15
+ - **`large_set`**: This folder contains 15,503 C functions derived from 65 different programs and corresponding Rust functions transpiled using the selected LLM.
16
+ - **`C2Rust-Bench`**: This folder contains the proposed C2Rust-Bench and includes the following subfolders:
17
+ - `C_functions`: This folder contains C code for the selected C functions obtained after segmentation, with one individual function per C file. These individual C funtions are used in transpilation to obtain corresponding Rust functions under `Rust_functions` folder. Note that these C files may not be individually compilable.
18
+ - `C_files`: This folder contains the original C files after preprocessing and before the segmentation process. These C files contain additional C code (such as other functions, global variables, struct definitions etc.) in addition to the C code for the selected function. The C files are named the same as their corresponding file in the `C_functions` folder. These C files are individually compilable.
19
+ - `Rust_functions`: This folder contains the individual Rust functions obtained from transpilation of C functions in `C_functions` folder.