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.

Power consumption in arithmetic operations

Status
Not open for further replies.

soloktanjung

Full Member level 6
Joined
Nov 20, 2006
Messages
364
Helped
51
Reputation
100
Reaction score
43
Trophy points
1,308
Location
nowhere
Activity points
3,194
Hi,

I would like to know the power consumption of arithmetic operations such as addition, subtraction, multiplication and division.

I've code each arithmetic opertion in Verilog and estimated the power using XPOWER from Xilinx tools, but it shows 0. Only leakge power consumption are estimated. I'm thinking that the design is simple and thus not consume much power.

This is a code I wrote:

Code:
module adderpower(clk, a, b, sum);

input							clk;
input		signed	[8:0]	a, b;
output 	signed	[9:0] sum;

reg 		[9:0]	sum;

always@(posedge clk)
 sum<=a+b;

endmodule

Anyone can point me out how to estimate the power consumption of arithmetic operations? Should I modified the code above of write another one?

Thanks in advance.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top