GSoC/2018/StatusReports/ivanyossiIván

From KDE Community Wiki
< GSoC‎ | 2018‎ | StatusReports
Revision as of 18:08, 8 May 2018 by Ghevan (talk | contribs) (Created page with "== Optimize Krita Soft, Gaussian and Stamp brushes mask generation to use AVX with Vc Library == Krita digital painting app relies on quick painting response to give a natural...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Optimize Krita Soft, Gaussian and Stamp brushes mask generation to use AVX with Vc Library

Krita digital painting app relies on quick painting response to give a natural experience. A painted line is composed of thousands of images, called dabs, placed one after the other, each dab is masked to generate a different brush tip shape. This mask creation as stamping on canvas must be performed super fast as it is done thousands of times per second (A small brush of 300x300px with 10% spacing does around 600 dabs per second) . If the process of applying the images on canvas is not fast enough the painting process gets compromised and the enjoyment of painting is reduced.

For optimizing the mask creation we can use the AVX instructions set to apply transformation in vectors of data in one step. In this case the data is the image component coordinates composing the mask. One way of programming AVX is in assembly, but this is not manageable or future proof, as newer processors will come out with new, enhanced instruction sets. To allow future proof, krita has opted to use the Vc optimization library, which translates C++ code templates to assembly code tailored to the user’s processor features.

Project Goals

Implement AVX optimization using Vc library on

  • Circular Gauss
  • Circular Soft
  • Rectangular Gaussian
  • Rectangular Soft
  • Stamp Mask

Work report

First week, during community bonding, we read documentation and made a first proposal for the Unit test to be used in the implementation process. This Unit test has to compare the new mask shap and the legacy one and assert they are similar with a certain error. Unit test works ok, but it is not as isolated as needed and possibly other brush preparations used could interfere with the brush mask testing.

Project related links