Ran profiler with our scenarios with 2.1 and I see...
# k2-adopters
e
Ran profiler with our scenarios with 2.1 and I see significant drop (sometimes 20%). What is your experience?
r
Compilation time or runtime performance?
e
Build. Mistake I made - I do android project various assemble scenarios measuring. That involves not only compile but various other things. To judge correctly, I should measure only compilation probably.
t
in task execution time or including Gradle configuration time?
e
I measure task run so it includes both
I also have configuration only measurement
This is what I got.
After
Before
Again, I should do compilation only to have clean numbers
t
interesting, generally we don't see any problem in our performance benchmarks for this release
🙌🏼 1
Also could you collect Kotlin build metrics for both releases?
preferably in json format
e
kotlin.build.report.output=file
How to get json format?
Looks like change
file
to
json
👌 1
t
you could also use:
Copy code
kotlin.build.report.json.directory=my/directory/path
👍🏼 1
e
Will do that!
thank you color 1