Go Back   Velocity Reviews > Newsgroups > VHDL
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

VHDL - Help with this project.

 
Thread Tools Search this Thread
Old 11-02-2004, 03:54 AM   #1
Default Help with this project.


Arithmetic operations are among the most basic instructions in
microprocessors and many other ASICs. From SPECfp2000 benchmark, about
15% of the floating-point ALU operations are additions and about 10%
are subtractions. The most time consuming arithmetic operation is the
floating-point division, then comes to the multiplication and then the
addition/subtraction. The speed of those arithmetic operations
directly links to the overall performance of the ALU units and so the
computers. Since floating-point addition/subtraction units are built
on top of integer addition/subtraction units, performance of integer
addition/subtraction units have direct link to performance of
floating-point units.

In this class project, we design 2 32-bit addition/subtraction units,
one uses straight simple ripple-carry algorithm and the other uses
carry-looked-ahead algorithm. Our study will basically explore the
correlations between areas, speeds, algorithms and will at least cover
the information as listed below. All analyses will be performed based
on both theory and measurements and explanation will be provided for
discrepancies between the twos.
ƒ 1)Correlation of areas and speeds for both algorithms will be
determined
2)The two designs will be optimized for areas and analysis on speeds
will be performed
3)The two designs will be optimized for speeds and analysis on areas
will be performed
4)Costs and speeds of a 32-bit floating-point unit if the unit is
built based on one addition/subtraction algorithm versus the other
will be relatively evaluated

This project start with verilog code. I am unable to start the
code.I need help from group.

Thanks
sirisha.


sirisha
  Reply With Quote
Old 11-02-2004, 06:07 AM   #2
Prasanth Kumar
 
Posts: n/a
Default Re: Help with this project.
On Mon, 2004-11-01 at 19:54 -0800, sirisha wrote:
> Arithmetic operations are among the most basic instructions in
> microprocessors and many other ASICs. From SPECfp2000 benchmark, about
> 15% of the floating-point ALU operations are additions and about 10%
> are subtractions. The most time consuming arithmetic operation is the
> floating-point division, then comes to the multiplication and then the
> addition/subtraction. The speed of those arithmetic operations
> directly links to the overall performance of the ALU units and so the
> computers. Since floating-point addition/subtraction units are built
> on top of integer addition/subtraction units, performance of integer
> addition/subtraction units have direct link to performance of
> floating-point units.
>
> In this class project, we design 2 32-bit addition/subtraction units,
> one uses straight simple ripple-carry algorithm and the other uses
> carry-looked-ahead algorithm. Our study will basically explore the
> correlations between areas, speeds, algorithms and will at least cover
> the information as listed below. All analyses will be performed based
> on both theory and measurements and explanation will be provided for
> discrepancies between the twos.
> ƒ 1)Correlation of areas and speeds for both algorithms will be
> determined
> 2)The two designs will be optimized for areas and analysis on speeds
> will be performed
> 3)The two designs will be optimized for speeds and analysis on areas
> will be performed
> 4)Costs and speeds of a 32-bit floating-point unit if the unit is
> built based on one addition/subtraction algorithm versus the other
> will be relatively evaluated
>
> This project start with verilog code. I am unable to start the
> code.I need help from group.
>
> Thanks
> sirisha.


Here is some help to start the code:

module ripple(sum, opa, opb);

// you fill in the code here

endmodule




Prasanth Kumar
  Reply With Quote
Old 11-02-2004, 05:46 PM   #3
sirisha
 
Posts: n/a
Default Re: Help with this project.
Prasanth Kumar <> wrote in message news:< n>...
> On Mon, 2004-11-01 at 19:54 -0800, sirisha wrote:
> > Arithmetic operations are among the most basic instructions in
> > microprocessors and many other ASICs. From SPECfp2000 benchmark, about
> > 15% of the floating-point ALU operations are additions and about 10%
> > are subtractions. The most time consuming arithmetic operation is the
> > floating-point division, then comes to the multiplication and then the
> > addition/subtraction. The speed of those arithmetic operations
> > directly links to the overall performance of the ALU units and so the
> > computers. Since floating-point addition/subtraction units are built
> > on top of integer addition/subtraction units, performance of integer
> > addition/subtraction units have direct link to performance of
> > floating-point units.
> >
> > In this class project, we design 2 32-bit addition/subtraction units,
> > one uses straight simple ripple-carry algorithm and the other uses
> > carry-looked-ahead algorithm. Our study will basically explore the
> > correlations between areas, speeds, algorithms and will at least cover
> > the information as listed below. All analyses will be performed based
> > on both theory and measurements and explanation will be provided for
> > discrepancies between the twos.
> > ƒ 1)Correlation of areas and speeds for both algorithms will be
> > determined
> > 2)The two designs will be optimized for areas and analysis on speeds
> > will be performed
> > 3)The two designs will be optimized for speeds and analysis on areas
> > will be performed
> > 4)Costs and speeds of a 32-bit floating-point unit if the unit is
> > built based on one addition/subtraction algorithm versus the other
> > will be relatively evaluated
> >
> > This project start with verilog code. I am unable to start the
> > code.I need help from group.
> >
> > Thanks
> > sirisha.

>
> Here is some help to start the code:
>
> module ripple(sum, opa, opb);
>
> // you fill in the code here
>
> endmodule


can u give some more ideas of this project.difference between ripple
and carry look ahead adders.

thanks
sirisha.


sirisha
  Reply With Quote
Old 11-02-2004, 08:17 PM   #4
Ralf Hildebrandt
 
Posts: n/a
Default Re: Help with this project.
sirisha wrote:

> can u give some more ideas of this project.difference between ripple
> and carry look ahead adders.


This is teached in every course about basic digital circuit techniques.
If you missed lecture, search the internet. It took me 5 Seconds to find
some helpful pictures and a text about this topic. I took
http://images.google.com with search string "Carry Ripple Adder" and
found
http://images.google.com/imgres?imgu... %3D%26sa%3DN


Ralf


Ralf Hildebrandt
  Reply With Quote
Old 11-04-2004, 01:14 PM   #5
Brian Drummond
 
Posts: n/a
Default Re: Help with this project.
On 2 Nov 2004 09:46:23 -0800, (sirisha) wrote:

>Prasanth Kumar <> wrote in message news:< n>...
>> On Mon, 2004-11-01 at 19:54 -0800, sirisha wrote:
>> > Arithmetic operations are among the most basic instructions in
>> > microprocessors and many other ASICs.
>> > In this class project, we design 2 32-bit addition/subtraction units,
>> > one uses straight simple ripple-carry algorithm and the other uses
>> > carry-looked-ahead algorithm.

>
>can u give some more ideas of this project.difference between ripple
>and carry look ahead adders.
>


Best online introduction I have found was some course notes from
Reto Zimmermann at ETH Zurich, downloadable from this page.

http://www.iis.ee.ethz.ch/~zimmi/arith_lib.html

- Brian


Brian Drummond
  Reply With Quote
Old 11-09-2004, 09:19 AM   #6
Vick
 
Posts: n/a
Default Re: Help with this project.
Sorry , if i sound rude, but this is just another posting where you
have cut and paste the entire Project details and asking for
solutions.

If I am not wrong this is probably another "indian female" posting it
who has taken this Computer Architecture course thinking it mite bost
her GPA but now struggling with it...

PLease do not post ur homeworks,

Thanx

(sirisha) wrote in message news:<. com>...
> Arithmetic operations are among the most basic instructions in
> microprocessors and many other ASICs. From SPECfp2000 benchmark, about
> 15% of the floating-point ALU operations are additions and about 10%
> are subtractions. The most time consuming arithmetic operation is the
> floating-point division, then comes to the multiplication and then the
> addition/subtraction. The speed of those arithmetic operations
> directly links to the overall performance of the ALU units and so the
> computers. Since floating-point addition/subtraction units are built
> on top of integer addition/subtraction units, performance of integer
> addition/subtraction units have direct link to performance of
> floating-point units.
>
> In this class project, we design 2 32-bit addition/subtraction units,
> one uses straight simple ripple-carry algorithm and the other uses
> carry-looked-ahead algorithm. Our study will basically explore the
> correlations between areas, speeds, algorithms and will at least cover
> the information as listed below. All analyses will be performed based
> on both theory and measurements and explanation will be provided for
> discrepancies between the twos.
> ƒ 1)Correlation of areas and speeds for both algorithms will be
> determined
> 2)The two designs will be optimized for areas and analysis on speeds
> will be performed
> 3)The two designs will be optimized for speeds and analysis on areas
> will be performed
> 4)Costs and speeds of a 32-bit floating-point unit if the unit is
> built based on one addition/subtraction algorithm versus the other
> will be relatively evaluated
>
> This project start with verilog code. I am unable to start the
> code.I need help from group.
>
> Thanks
> sirisha.



Vick
  Reply With Quote
Old 11-11-2004, 05:02 PM   #7
sirisha
 
Posts: n/a
Default Re: Help with this project.
Hi
Vick,
I don't want any solution of this project.Just i posted about my
project so that i can get an idea from group.Thats it.I am not
struggling with GPA and project.
Such rude affected me.Don't be like that.

Thanks for rest of them who gave ideas about this project.

Thanks
sirisha.





(Vick) wrote in message news:<. com>...
> Sorry , if i sound rude, but this is just another posting where you
> have cut and paste the entire Project details and asking for
> solutions.
>
> If I am not wrong this is probably another "indian female" posting it
> who has taken this Computer Architecture course thinking it mite bost
> her GPA but now struggling with it...
>
> PLease do not post ur homeworks,
>
> Thanx
>



sirisha
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help Compiling A VC++ 6 Project In Dev C++ 4.9.9.2 shen747 Software 1 09-19-2009 04:50 PM
Error: Physical sythesis tool PALAC is not supported by Formal Verification tool Conf bbiandov Software 0 12-22-2008 05:25 AM
ASP.Net Project Structure Question koraykazgan Software 0 08-10-2007 08:23 AM
StudentFilmmakers.com Hosts Second Annual PROJECT: FAIR Anti-Piracy PSA Contest and Online Showcase For VSDA Walter Traprock DVD Video 2 02-06-2006 01:49 AM
DVD Verdict reviews: PEOPLE I KNOW, PROJECT GREENLIGHT: THE COMPLETE SECOND SEASON, and more! DVD Verdict DVD Video 0 09-15-2004 10:07 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

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