Intel® Quartus® Prime Pro Edition User Guide: Power Analysis and Optimization
                    
                        ID
                        683174
                    
                
                
                    Date
                    12/12/2022
                
                
                    Public
                
            A newer version of this document is available. Customers should click here to go to the newest version.
                                                
                                                
                                                    
                                                        2.3.2.1. Using Simulation Signal Activity Data in Power Analysis
                                                    
                                                    
                                                    
                                                
                                                    
                                                        2.3.2.2. Signal Activities from RTL (Functional) Simulation, Supplemented by Vectorless Estimation
                                                    
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.3.2.3. Signal Activities from Vectorless Estimation and User-Supplied Input Pin Activities
                                                    
                                                    
                                                
                                                    
                                                    
                                                        2.3.2.4. Signal Activities from User Defaults Only
                                                    
                                                    
                                                
                                            
                                        
                                    
                                    
                                        
                                        
                                            2.5.1. Complete Design Simulation Power Analysis Flow
                                        
                                        
                                    
                                        
                                        
                                            2.5.2. Modular Design Simulation Power Analysis Flow
                                        
                                        
                                    
                                        
                                        
                                            2.5.3. Multiple Simulation Power Analysis Flow
                                        
                                        
                                    
                                        
                                        
                                            2.5.4. Overlapping Simulation Power Analysis Flow
                                        
                                        
                                    
                                        
                                            2.5.5. Partial Design Simulation Power Analysis Flow
                                        
                                        
                                        
                                    
                                        
                                        
                                            2.5.6. Vectorless Estimation Power Analysis Flow
                                        
                                        
                                    
                                
                            
                                    
                                    
                                        
                                            3.4.1. Clock Power Management
                                        
                                        
                                        
                                    
                                        
                                        
                                            3.4.2. Pipelining and Retiming
                                        
                                        
                                    
                                        
                                        
                                            3.4.3. Architectural Optimization
                                        
                                        
                                    
                                        
                                        
                                            3.4.4. I/O Power Guidelines
                                        
                                        
                                    
                                        
                                        
                                            3.4.5. Dynamically Controlled On-Chip Terminations (OCT)
                                        
                                        
                                    
                                        
                                            3.4.6. Memory Optimization (M20K/MLAB)
                                        
                                        
                                        
                                    
                                        
                                        
                                            3.4.7. DDR Memory Controller Settings
                                        
                                        
                                    
                                        
                                        
                                            3.4.8. DSP Implementation
                                        
                                        
                                            
                                                Implement Multiplier + Accumulator in 1 DSP
                                            
                                                Implement multiplication in 2 DSPs and the adder in LABs
                                            
                                        
                                    
                                        
                                        
                                            3.4.9. Reducing High-Speed Tile (HST) Usage
                                        
                                        
                                    
                                        
                                        
                                            3.4.10. Unused Transceiver Channels
                                        
                                        
                                    
                                        
                                            3.4.11. Periphery Power reduction XCVR Settings
                                        
                                        
                                        
                                    
                                
                            3.4.8. DSP Implementation
When you maximize the packing of DSP blocks, you reduce Logic Utilization, power consumption, and increase efficiency. The HDL coding style grants you control of the DSP resources available in the FPGA.
Implement Multiplier + Accumulator in 1 DSP
always @ (posedge clk)
begin
   if (ena)
   begin
      dataout <= dataa * datab + datac * datad;
   end
end 
  Implement multiplication in 2 DSPs and the adder in LABs
always @ (posedge clk)
begin
   if (ena)
   begin
      mult1 <= dataa * datab;
      mult2 <= datac * datad;
   end
end
always @(posedge clk)
begin
   if (ena)
   begin
      dataout <= mult1 + mult2
   end
end 
  
   Related Information