def test_autoplacer(): mask_path.mkdir(parents=True, exist_ok=True) # Map the component factory names in the YAML file to the component factory name2factory = {"SPIRAL": SPIRAL} print(doe_root_path) generate_does( str(config_yml), component_factory=name2factory, doe_root_path=doe_root_path, doe_metadata_path=doe_metadata_path, ) top_level = place_from_yaml(config_yml, doe_root_path) top_level.write(str(gdspath)) merge_metadata(gdspath=gdspath) assert gdspath.exists() assert markdown_path.exists() assert json_path.exists() assert test_metadata_path.exists() report = open(markdown_path).read() assert report.count( "#") >= 1, f" only {report.count('#')} DOEs in {markdown_path}" return gdspath
def test_mask(precision=1e-9): workspace_folder = CONFIG["samples_path"] / "mask_pack" build_path = workspace_folder / "build" mask_path = build_path / "mask" mask_path.mkdir(parents=True, exist_ok=True) gdspath = mask_path / "sample_mask.gds" markdown_path = gdspath.with_suffix(".md") json_path = gdspath.with_suffix(".json") test_metadata_path = gdspath.with_suffix(".tp.json") components = [spiral_te(length=length) for length in [2, 4, 6]] components += [ coupler_te(length=length, gap=0.2) for length in [10, 20, 30, 40] ] c = pp.pack(components) m = c[0] m.name = "sample_mask" pp.write_gds(m, gdspath) merge_metadata(gdspath=gdspath) assert gdspath.exists() assert markdown_path.exists() assert json_path.exists() assert test_metadata_path.exists() return gdspath
def test_mask(): """Returns gdspath for a Mask - Write GDS files defined in does.yml (with JSON metadata) - place them into a mask following placer information in does.yml - merge mask JSON metadata into a combined JSON file """ cwd = pathlib.Path(__file__).absolute().parent does_path = cwd / "does.yml" doe_root_path = cwd / "build" / "cache_doe_directory" mask_path = cwd / "build" / "mask" gdspath = mask_path / "mask.gds" mask_path.mkdir(parents=True, exist_ok=True) generate_does( str(does_path), doe_root_path=doe_root_path, ) top_level = place_from_yaml(does_path, root_does=doe_root_path) top_level.write(str(gdspath)) merge_metadata(gdspath) assert gdspath.exists() return gdspath
def test_mask(): """ """ cwd = pathlib.Path(__file__).absolute().parent does_path = cwd / "does.yml" doe_root_path = cwd / "build" / "cache_doe_directory" mask_path = cwd / "build" / "mask" gdspath = mask_path / "mask.gds" mask_path.mkdir(parents=True, exist_ok=True) generate_does( str(does_path), doe_root_path=doe_root_path, ) top_level = place_from_yaml(does_path, root_does=doe_root_path) top_level.write(str(gdspath)) merge_metadata(gdspath) assert gdspath.exists() return gdspath
def test_mask(precision=2e-9): workspace_folder = CONFIG["samples_path"] / "mask_custom" build_path = workspace_folder / "build" doe_root_path = build_path / "cache_doe" doe_metadata_path = build_path / "doe" mask_path = build_path / "mask" does_yml = workspace_folder / "does.yml" mask_path.mkdir(parents=True, exist_ok=True) gdspath = mask_path / "sample_mask.gds" markdown_path = gdspath.with_suffix(".md") json_path = gdspath.with_suffix(".json") test_metadata_path = gdspath.with_suffix(".tp.json") generate_does( str(does_yml), component_factory=component_factory, precision=precision, doe_root_path=doe_root_path, doe_metadata_path=doe_metadata_path, ) top_level = place_from_yaml(does_yml, precision=precision, root_does=doe_root_path) top_level.write(str(gdspath)) merge_metadata(gdspath=gdspath) assert gdspath.exists() assert markdown_path.exists() assert json_path.exists() assert test_metadata_path.exists() report = open(markdown_path).read() assert report.count("#") == 2, f" only {report.count('#')} DOEs in {markdown_path}" return gdspath