Datasets:

Modalities:
Text
Formats:
json
Size:
< 1K
Libraries:
Datasets
pandas
License:
File size: 2,957 Bytes
8817574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import os
from mlcroissant import Dataset
import re

# Load dataset (using local JSON-LD file)
ds = Dataset(jsonld="chipbench_meta_data.json")

# Get test cases record set
# test_cases = ds.records("verilog_file")

# Function to create directories
def ensure_dir(file_path):
    directory = os.path.dirname(file_path)
    if directory and not os.path.exists(directory):
        os.makedirs(directory)

# Process Verilog files
for case in ds.records("verilog_file"):
    case_name = case["verilog_file/design_name"]
    verilog_content = case["verilog_file/verilog_content"]
    verilog_path = case["verilog_file/verilog_path"]
    print(f"Creating Verilog file: {verilog_path}")
    ensure_dir(verilog_path)
    with open(verilog_path, 'w') as f:
        # Convert bytes to str if necessary
        if isinstance(verilog_content, bytes):
            verilog_content = verilog_content.decode('utf-8')
        f.write(verilog_content)

# Process SDC files
for sdc_case in ds.records("sdc_file"):
    sdc_name = sdc_case["sdc_file/design_name"]
    sdc_content = sdc_case["sdc_file/sdc_content"]
    sdc_path = sdc_case["sdc_file/sdc_path"]
    print(f"Creating SDC file: {sdc_path}")
    ensure_dir(sdc_path)
    with open(sdc_path, 'w') as f:
        # Convert bytes to str if necessary
        if isinstance(sdc_content, bytes):
            sdc_content = sdc_content.decode('utf-8')
        f.write(sdc_content)

# Process LEF files
for lef_case in ds.records("lef_file"):
    lef_name = lef_case["lef_file/design_name"]
    lef_content = lef_case["lef_file/lef_content"]
    lef_path = lef_case["lef_file/lef_paths"]
    print(f"Creating LEF file: {lef_path}")
    ensure_dir(lef_path)
    with open(lef_path, 'w') as f:
        # Convert bytes to str if necessary
        if isinstance(lef_content, bytes):
            lef_content = lef_content.decode('utf-8')
        f.write(lef_content)

# Process DEF files
for def_case in ds.records("def_file"):
    def_name = def_case["def_file/design_name"]
    def_content = def_case["def_file/def_content"]
    def_path = def_case["def_file/def_paths"]
    print(f"Creating DEF file: {def_path}")
    ensure_dir(def_path)
    with open(def_path, 'w') as f:
        # Convert bytes to str if necessary
        if isinstance(def_content, bytes):
            def_content = def_content.decode('utf-8')
        f.write(def_content)

# Process Liberty files
for liberty_case in ds.records("lib_file"):
    liberty_name = liberty_case["lib_file/design_name"]
    liberty_content = liberty_case["lib_file/lib_content"]
    liberty_path = liberty_case["lib_file/lib_paths"]
    print(f"Creating Liberty file: {liberty_path}")
    ensure_dir(liberty_path)
    with open(liberty_path, 'w') as f:
        # Convert bytes to str if necessary
        if isinstance(liberty_content, bytes):
            liberty_content = liberty_content.decode('utf-8')
        f.write(liberty_content)

print("All files created successfully!")