elihart
06/28/2021, 6:41 PMusing KAPT and KSP in the same module will likely slow down your build initially
- however, we did some gradle profiling of our own project with KSP enabled and found that mixing KSP/KAPT actually is slightly faster than using only KAPT (if not all processors support KSP)
I’m wondering if there is any more current information about mixing KAPT and KSP in the same module (since alpha release was a while ago), and I’m curious to hear about other people’s experienceZac Sweers
06/28/2021, 6:54 PMJiaxiang
06/28/2021, 6:54 PMTyler Hodgkins
06/28/2021, 8:07 PMJiaxiang
06/28/2021, 8:09 PMJiaxiang
06/28/2021, 8:10 PMyigit
06/28/2021, 8:52 PMelihart
06/28/2021, 10:05 PMoh, if by mixing means replacing some KAPT processors with KSP processors, then it might be true if the KSP implementation of the processor is faster.yes, this is what I mean. For example we have two processors in a module and only one supports KSP, we can either run both with KAPT or run one with KAPT and the other with KSP.
what processors are running in each case?they’re in house processors
elihart
06/28/2021, 10:06 PMJiaxiang
06/28/2021, 10:07 PMelihart
06/28/2021, 10:10 PMJiaxiang
06/28/2021, 10:11 PMTing-Yuan Huang
06/28/2021, 10:17 PMTing-Yuan Huang
06/28/2021, 10:35 PMelihart
06/28/2021, 11:13 PM