GUI: speed up computation of predicted traces
shashwatsridhar opened this issue · 0 comments
shashwatsridhar commented
In the current implementation, the function that calculates the predicted traces performs the computation using cupy arrays. The overhead for converting numpy arrays to cupy arrays is large and leads to a significant lag in user experience. Changing the cupy functions to numpy functions should speed up computation, since the arrays used in this computation are not memory-intensive (even for large datasets).