Saturday, December 25, 2004

VLSI - Silicon on Insulator (SOI)

SOI Benefits:

  • suppression of bottom junctions
    - lower parasitic capacitance
    - faster switching and/or lower power
  • full isolation
    - no latch-up
    - denser layout
    - lower interferences between the analog and digital parts of a SoC
    - lower losses in the passive components at high frequency
    - lower leakage current , enabling operation at higher temperature (250°C)
    - but : floating body effect in partially-depleted transistors
  • thin active area
    - lower sensitivity to radiations ( lower SEU sensitivity in memory cells )

Overall performance improvement (at same technology node):

  • 25% faster
  • 50% lower power consumption
  • 10% smaller die size

Link



From IBM white paper on SOI:

  • One of the areas that can store charge in a MOS switch is the area between the impurities added to a chip’s silicon and the silicon substrate itself, which is free of impurities. That area is called the “junction capacitance”. If a thin layer of an insulator, such as glass, is placed between the impurities and the silicon substrate, the junction capacitance will be eliminated and the MOS transistor will operate faster.
  • Even in cases where the quality of the SOI layer has been fine for making single chips or small circuits, the MOS transistor placed on the SOI layer has continued to pose serious challenges. When a MOS transistor is placed on SOI, it is also placed next to a parallel bipolar transistor. The bipolar transistor can turn on when the MOS switch passes current through itself, i.e. base current will be supplied through the base impact ionization.
  • Dropping the voltage is very effective in reducing chip power. The ability of SOI as a low power source originates from the fact that SOI circuits can operate at low voltage with the same performance as a bulk technology at high voltage.
  • As an example, measured on a 4 Mb SRAM. At the same performance as bulk CMOS, SOI can reduce the chip power by 1.7-3X (depending on the switching factor of the devices).

IBM white paper on SOI


Wednesday, December 22, 2004

STL - Foreach style loop for map

map< string, double > token_data;


for ( map< string, double >::iterator im = token_data.begin(); im != token_data.end(); ++im )

cout << "\"" << im->first << "\" = " << im->second << endl;

Tuesday, December 21, 2004

Javascript - Checking if a variable is defined

The following is taken from this page.

....
However, we have found that sometimes developers don't read the documentation on how to set up a reusable piece of code, and will omit the global JavaScript variable. So when that reusable code is executed, an error message happens because the variable has not been defined.

To get around this, we have gotten in the habit of checking to see if a variable has been defined. This is actually pretty easy to do in JavaScript, but it's not something you would normally think of. The first thing we tried was:

if (globalVariable) {

But this wouldn't work. That code is actually checking to see if the defined variable globalVariable has a null value. If the variable has not been defined, that code will cause an error.

Instead, here is the code that will check for the presence of a global variable:

if (window.globalVariable) {

A global variable automatically becomes a part of the window object. So checking to see if the window object has that "property" means checking to see if the variable has been defined or not. Going into the if block means the variable has been defined and can be used as you would normally use a global variable.

Saturday, December 18, 2004

State machines - Mealy vs Moore

Mealy:
The output is a function of the state of the machine and of the inputs.

Moore:
The output is a function only of the state of the machine checking.
M[OO]re => [O]utput [O]nly

advantages/disadvantages:

- Mealy often has fewer states than Moore machine since it associates outputs with transitions.
- Mealy machine can fall victim to glitchessince outputs are asynchronous.

How to write FSM in verilog
Mealy vs Moore [1]


Taken from [1].

Thursday, December 16, 2004

Unix - wget

I am using wget to get archives of my blogs. I have a perl script where I call wget. This perl script is called once a week to archive the blogs. This is done by crontab. I keep the last 4 archives and delete the 5. one.

I am using wget 1.8 on a unix machine. This is the command I use:

/usr/local/bin/wget -a ${blog}.log -Dphotos1.blogger.com,blogspot.com -r -l1 -p -H -k -E http://$blogs{$blog}

$blog is the variable for the individual blog. %blogs is the hash which has the URL of the blog.
-a is used to append to the logfile $blog.log
-r is to retrieve recursively
-l is the level of recursion
-p is to download all page requisites
-H is to enable jumping to other domains
-k is to change the links to point to the local copies (convert links)
-E is to change *.cgi kind of file names to .html

I had some pictures which are somewhere in photos1.blogger.com so I wanted to include that domain together with blogspot.com where my blog is hosted to be able to get the pictures as well. But I couldn't manage to do it. If by changing some arguments I get the pictures, wget did not get files other than index.html from my blog. At the end I just gave up... Will look into it later.

perl:

In the perl code, use absolute positions of the directories and also wget. It causes problems with crontab otherwise.

crontab:

0 3 1,8,15,22 * * abs_position/arc_blogs.pl >/dev/null 2>/dev/null

Perl script is called at 3am every 1st, 8th, 15th, and 22nd days of the month.

Wednesday, December 15, 2004

HTML - Blockquote

Blockquote can be used to indent some partf of the text and/or change the backgound color of some paragraphs.


Now, I will indent the text below and change the background color:



Like this!


tag has these properties: style="BACKGROUND: #ddd; MARGIN-LEFT: 20px; WIDTH: 300px;"




Perl - Checking if a variable is null

code:

#!/usr/local/bin/perl -w
$string = "ali,veli,gel";
my($a1,$a2,$a3,$a4) = split(',',$string);
if($a1) {print "$a1 ne guzel\n";}
else {print "Sicar\n";}
if($a2) {print "$a2 ne guzel\n";}
else {print "Sicar\n";}
if($a3) {print "$a3 ne guzel\n";}
else {print "Sicar\n";}
if($a4) {print "$a4 ne guzel\n";}
else {print "Sicar\n";}

output:

ali ne guzel
veli ne guzel
gel ne guzel
Sicar

Interview with Intel CAD group

Last night, I had an interview with the CAD group in Intel. They are about 35 engineeris and they do phisical design CAD tools for the microprocessor group. They are located in Oregon and Santa Clara. He asked the following questions during the ~1 hour phone interview:

- What is the biggest coding project you were involved?
- What is the difference between C and C++?
- You have a class as follows:

class node
{
public:
node *l_child, *r_child;
....
}
Write the function delete_tree(node *root)... It is something like below:
{
if(root == NULL) return;
delete_tree(root->l_child);
delete_tree(root->r_child);
delete(root);
}

- What is virtual function used for in C++?
It has something to do with derived classes. If you have a pointer to a derived class and if you call a virtual function on that pointer, it goes to the correct function i.e. not to the function of the parent class. You can have an array of pointers of type *parent. Then you can construct them as being pointers to the derived classes. Then when you call a function for every element of the array, it will call the correct function for all the derived classes.
http://www.glenmccl.com/virt_cmp.htm

- You have a graph. Given a node, how do you find the total number of nodes? Each node has the information about its children.
- Explain breadth first search and depth first search.
http://www.ics.uci.edu/~eppstein/161/960215.html
Nice animation

Tuesday, December 14, 2004

Sense Amplifier Design

Regular:

- Without clock
- Dissipates static energy
- Differential pair

With clock:

- Regenerative feedback
- Schematic looks like a back to back inverter with PMOS transistors driven by sense_clk, blocking the bit and bit_bar lines; and NMOS transistor driven by sense_clk between ground and the inverter pair
- No static dissipation

Nice presentation about SRAM design:
http://www.ece.utexas.edu/~adnan/vlsi-04/lec13SRAM.ppt