Forum Discussion
Henry
New Contributor
7 years agoHow to heat FPGA at max power consumption?
I am new to Intel FPGA. Is there any code or tutorial about stress FPGA at max power consumption? I try to use a lot of register, however compiler seems will simplify my design, so that I can't get...
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