phlion

About

Username
phlion
Joined
Visits
77
Last Active
Roles
Member

Comments

  • Hi, Please confirm if the View => Show Layers Without Fill option has been checked, if yes please uncheck it. It's a personal environment setting so re-install klayout would not help. Best Regards, chhung
  • File => Setup => Display(Left window) => Background => Background color(Right window)
  • Hi Matthias, This patch fixed the problem, thanks :) Best Regards, chhung
  • Hi Matthias, Thanks for the new code, it solved our problem and works fine. :) Thank you~ Best Regards, chhung
  • Hi Matthias, I tried the patch in line 1254 of rba.cc, and it fixed the compiler issue, thank you so much. Currently our gcc version is v4.0.1, although it's really old but we are not able to upgrade it now. Finally we success compiled the binary …
  • Hi Matthias, I have a question maybe related with the topic. How to know the file format if open a file without file extension in klayout GUI and command mode ? For example: If I open a file named "ABC" and klayout success open that, th…
  • Hi I guess you misunderstanding Matthias' words.. For klayout Windows version, it comes with a built-in ruby interpreter, you don't have to compile any source code for ruby script. Because ruby is text script, you should edit a file maybe named &…
  • Hi Matthias, With the new tarkit, the T_ZOMBIE and QtGui problems were fixed, however new issue happened. OS: MDK 9.2 64bit Qt: 4.4.3-1 Ruby: 1.9.3p194 (2012-04-20 revision 35410) or 1.8.7 (2011-02-18 patchlevel 334) /klayout-0.22/src/rba.cc: I…
  • Hi Matthias, I also have some klayout v0.22 build issue, both case could compile klayout v0.21.19 without problems. Case1: OS: CentOS 6.2 64bit Qt: 4.6.2-20 In file included from /klayout-0.22/src/rba.cc:117:/usr/lib64/ruby/1.8/x86_64-linux/node…
  • Hi Matthias, Really appreciate for your kindly help, I've solved this issue via your code. I tried the flatten method and found the performance would be much slower than RecursiveShapeIterator, so it might be better use on small files. About the …
  • Hi Matthias, I modified the codes as follow: layout.each_cell do |cell| cell.shapes(l1).each do |shape| if shape.is_text? text = shape.text xpos = text.trans.disp.x*layout.dbu ypos = text.trans.disp.y*layout.dbu printf(&quo…
  • Hi Matthias, The whole code as follow, I'd like to read the specified layer with text, and print all the coordinates of texts. However the result of the code doesn't work as I think. This code would extract all the text with the same coordinates l…
  • Hi Matthias, You are right, I missed the "if called_cells[cisrc]" statement... I modified the code and confirmed it works fine now, and I edited/corrected the code in the above post for others who interesting in it. Really appreciate yo…
  • Hi Matthias, I modified the code and try to run it again, however the result didn't fit our request, it still contains all the cells in the original database(just like copy), not extracted cell with sub cells. The whole RBA code: def copy_cells(l…
  • Hi Matthias, I referenced the following code you wrote and trying to implement the cell extraction function via RBA code, however it failed with the error message, I guess the copy_cells could not be used in this condition, could you please give me…
  • Hi Matthias, Our gcc version is 3.4.3 and Qt is 4.4.3, I know it's very old but we have to keep it running. I tried to setup a CentOS(RHEL) 6.2 with gcc 4.4.6 and Qt 4.6.2, it could be used to compile either 0.21.19 or r1335 well, however the comp…
  • Hi Matthias, I modified the capturedTexts section in layGenericSyntaxHighlighter.cc, and encountered other problems. rba.cc: /source/klayout-r1335/src/rba.cc: In member function `void rba::GetBoxValueFunc::op()': /source/klayout-r1335/src/rba.cc:1…
  • Hi Matthias, I tried to compile the klayout-r1335 with all the same setting to compile klayout v0.21.19, however failed with the following error, could you please let me know how to fix the problem? Thanks~ /source/klayout-r1335/src/layGenericSynt…
  • Hi Matthias, I spent some time to confirm the strange problem and sorry to reply so late. Although the ruby version has been upgraded from 1.8.7 p334 to 1.9.3 p194, the segmentation fault issue is still there. The most unbelievable thing is the si…
  • Hi Matthias, I have tried to download then make 0.21.19 smoothly, and it fixed the problems we feedback before, really thanks for your kindly mail notice. :) Best Regards, -- chhung
  • Hi Matthias, I've sent a mail to contact @ klayout . de (with correct mail format), thank you so much~ :) If still failed to get the email, please let me know~ Best Regards, -- chhung
  • Hi Matthias, Thanks for the patch, I applied it on 0.21.17 and it fixed the Invalid Delta Count issue, thank you so much~ :) However we have another problem now, could you please download the test case file from the website? It's a test file that…
  • Hi Matthias, The problem is not every users connect to workstation via XDMCP with Xserver, if they connect and run the Ruby code with telnet/rexec from Windows, they would get the message and stick on it. Anyway... we would try to find if any othe…
  • Hi Matthias, We followed the steps you post to try and it works fine, and now we have another two questions. 1. Once we execute klayout to load the RBA code we write, it shows "klayout: cannot connect to X server" if we didn't setup envir…
  • Hi Matthias, I tried to follow the example you post to do a layer conversion in batch mode, however stuck on how to read layer map file, could you please teach me how to do that? thanks. lay = RBA::Layout.new loadopt = RBA::LoadLayoutOptions.new …
  • Hi Matthias, I'm sorry to reply so late, we have tried the reader options and it works fine, however it would confuse the users with the following two conditions: 1. Several users using the same account, when one user forgot to clear the table, it …
  • Hi Matthias, Thanks for your comments, I modified some code as follow and it works fine for our request. if (argc != 5) { printf ("Syntax: layerclip <infile> <outfile.oas> <layer> <type>\n"); return 1; } ... …
  • Hi Matthias, I tried to find out the cause via A/B test and finally figured out the problem is from Ruby Library version. Once I update the Ruby Library from v1.8.7 Patch174 to v1.8.7 Patch249, this problem gone. It should be a Ruby Library bug an…
  • Hi Matthias, I tried the two new Ruby programs and the "Ruby error" issue had been fixed, however the "[BUG] Segmentation fault" is still there if "count = 0". I have no idea it's caused by different Ruby version or w…
  • Hi Matthias, Another strange issue happened... If we click Edit=>Select=>Select All(or Unselect All), everything works fine. However once we select many objects then run count_shapes function, the error happened when we click Edit=>Selec…