gemini icon indicating copy to clipboard operation
gemini copied to clipboard

optimize memory allocations

Open dkropachev opened this issue 2 years ago • 0 comments

Gemini code is not optimized for memory allocations. Here is what we can do as first step to optimize it:

  1. Locate most loaded peaces of the code:
  • Value generator
  • Statements builder
  • Test status submitting/consuming
  1. Optimize them with following in the mind:
  • Use pointer for: structs and strings
  • Reuse what could be reused
  • Get rid of excess operations

dkropachev avatar May 05 '23 15:05 dkropachev