Updated README.md to describe newly added supplementary files
Browse files
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 |
-
|
| 16 |
-
- **`
|
| 17 |
-
- This folder contains
|
| 18 |
-
-
|
| 19 |
-
- This folder contains the
|
|
|
|
| 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.
|