Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to open and read any GDSII files?

Status
Not open for further replies.

pd_vlsi

Newbie level 6
Joined
Sep 11, 2006
Messages
13
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,368
GDSII files

hello!!!

how do we open any GDSII files...can we read it....?

if yes, how?

Thanks!!
 

Re: GDSII files

then how do one read GDSII files?
 

Re: GDSII files

Hi

Why you want to read the GDS files?

Generally GDS-II files contains the co-ordinate info in a specific format which can be used in Mask preparation. We need different [approx 18 msks] for a typical CMOS process. GDS-II files are given as input to E-Beam masking machines. These files can not be read as they are of not readable format. GDS files are mainly for fab purpose.

All the best.

Udaikumar.
 

    hamidyadegaramin

    Points: 0
    you do not have to share your discouraging opinions if you do not know the answer. There are many reason one needs to work with layout scripts such as merging cells and automation of layout
GDSII files

hello pd_VLSi

i am not sure if this is wat the answer ur looking for .. GDSII is a file which is actually ment to be sent for fabricatin which has layout information .. i guess u r want to know at exactly the file is .. the best way is to opne the GDS file in any of the layout tools .. i think u can see the wat the file has//
please let me know if i am wrong ..
suresh
 

Re: GDSII files

Though you really dont want to read the GDSII files, but if want to view the graphical output of the GDSII, as in the polygons and their locations, you can use a tool which goes by the name "qckvu" by artworks.
Follow the link and know more.
https://www.artwork.com/gdsii/qckvu/datsheet.htm

--cmos_dude
 

Re: GDSII files

There is a software called GDS viewer u can see ur gds file using that.

Thanks

Regards
Shankar
 

Re: GDSII files

hello!!!

how do we open any GDSII files...can we read it....?

if yes, how?

Thanks!!

Convert gds file into text format using

gds2text [-h] gds2_file
 

Re: GDSII files

Perl:

Code Perl - [expand]
1
2
3
4
5
6
7
8
9
[FONT=Courier New]
    #!/usr/bin/perl -w
    use GDS2;
    my $gds2File = new GDS2(-fileName=>$ARGV[0]);
    while ($gds2File -> readGds2Record)
    {
        print $gds2File -> returnRecordAsString(-compact=>1);
    }
[/FONT]



Compiled C program gds2gdt https://sourceforge.net/projects/gds2/
gds2gdt gds2File.gds outputFile.gdt
 
Last edited by a moderator:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top