Optimizing

How to use the Optimizing feature.

The code optimization in the synthesis phase is a program transformation technique, which tries to improve the intermediate code by making it consume fewer resources (i.e. CPU, Memory) so that faster-running machine code will result. Our State of the art Optimization feature will target the optimization of various activities such as Loop Unrolling, Instruction Scheduling, Register Allocation, and Dead Code elimination.

The optimization process will be performed to improve the performance of the application by reducing the overall execution time, memory usage, and power consumption.

Step 1 :

Log in first with Google Authentication on Kodezi.

Step 2 :

After successfully logging in, select the Optimizing button for the short method, or use the context menu when right-clicking the code editor.

At this time optimizing large amounts of code simultaneously is not supported. We recommend choosing a specific block of code to optimize instead.

Step 3 :

After clicking on the optimizing button, the optimizing process will start.

Step 4 :

You will see results similar to these in your IDE once the optimizing process is finished.

Step 5 :

Now you can simply click on the apply button for the result that will add to your original file.

Last updated