Forum Discussion
Henry
New Contributor
7 years agothanks,
I use about 1M register, the power consumption is about 80W much lower than stratix 10 spec 170W.
Have any idea to increase power consumption?
increase more register and reverse it is the best solution?
localparam N = 1000000;
(* noprune *) reg [N:0] reg = 0;
always @ (posedge clk_600)
begin
reg <= ~reg;
end