Datasets:

Size:
< 1K
ArXiv:
arnauad commited on
Commit
0ac6820
·
verified ·
1 Parent(s): 0977735

Modify Readme

Browse files
Files changed (1) hide show
  1. README.md +31 -3
README.md CHANGED
@@ -1,3 +1,31 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Summary
2
+ RuC is a grammar-driven, rule-selectable benchmark generator that automatically produces RTL code-completion tasks from a set of input hardware description sources. It uses the target HDL grammar to mask syntactically defined code regions and prompts a model to regenerate them using the surrounding unmasked code as context.
3
+
4
+ RuC-datasets is a collection of design datasets processed with the RuC framework and used for the experimentations in the paper.
5
+ Although RuC-cve2_b72358c7-32k and RuC-tt07-32k share the same schema and preprocessing steps, they originate from different base datasets and should be treated as separate datasets.
6
+
7
+ ## Datasets structure
8
+ Each project inside both datasets contains:
9
+
10
+ - <top_module>.sv for cve2 or <top_module>.v for tt07
11
+ Verilog or SystemVerilog hardware design named after the top-level module.
12
+ - mask_idx.json
13
+ Indices of selected rule occurrences used for RuC.
14
+ - all_mask_idx.json
15
+ Full set of candidate rule occurrences eligible for masking.
16
+
17
+ ## Datasets creation
18
+ Both datasets computed mask_idx.json and all_mask_idx.json using RuC as explained in the paper.
19
+
20
+ ### RuC-tt07-32k
21
+ NotSoTiny shuttle tt07 (https://huggingface.co/datasets/HPAI-BSC/NotSoTiny-25-12) filtered to keep designs that contain less than 32000 tokens.
22
+
23
+ ### RuC-cve2_b72358c7-32k
24
+ CVE2 is an industry-grade RISC-V core maintained by OpenHWGroup. CVE2 codebase preprocessed using vppreproc and filtered to keep designs that contain less than 32000 tokens.
25
+
26
+ ## Datasets usage
27
+ This datasets are intended to use together with the RuC framework (https://github.com/HPAI-BSC/RuC) to directly perform inference and evaluation on different LLMs.
28
+
29
+ ---
30
+ license: apache-2.0
31
+ ---