Re: [Development] Qt quick compiler impact on qmlbench.

2021-03-03 Thread Ulf Hermann
Hi Valery, 1. I tried to add CONFIG += qtquickcompiler option to src/src.pro (qmlbench app) file After that all QML & JS files which enumerated in qmlbench.qrc file was compiled to CPP code as expected. That doesn't really help all that much. The interesting code is in the "free" QML files t

Re: [Development] Qt quick compiler impact on qmlbench.

2021-03-02 Thread Chris Adams
Hi, On Wed, Mar 3, 2021 at 7:08 AM Robin Burchell wrote: > On Tue, 2 Mar 2021, at 8:36 PM, Valery Volgutov wrote: > > Could you please let me know why I have no any performance improvements > > after quickcompiler apply? > > The QML compiler affects the performance of parsing and compiling the >

Re: [Development] Qt quick compiler impact on qmlbench.

2021-03-02 Thread Robin Burchell
On Tue, 2 Mar 2021, at 8:36 PM, Valery Volgutov wrote: > Could you please let me know why I have no any performance improvements > after quickcompiler apply? The QML compiler affects the performance of parsing and compiling the parsed source code. qmlbench is primarily testing the performance of

[Development] Qt quick compiler impact on qmlbench.

2021-03-02 Thread Valery Volgutov
I have some question about quickcompiler impact on qmlbench (https://code.qt.io/cgit/qt-labs/qmlbench.git/about/). 1. I tried to add CONFIG += qtquickcompiler option to src/src.pro (qmlbench app) file After that all QML & JS files which enumerated in qmlbench.qrc file was com