subashatreya

Results 5 comments of subashatreya

I tried a slightly different version with a loop in an attempt to "warm-up" GraalPython. but the CPython is still a LOT faster. Also, note that I am not measure...

Third attempt to warm up GraalPython. I added sleep() inside the loop and made the loop run 100 times instead of 10. ``` data_dict = [] for i in range(100):...

Well, my actual application workload is a lot more complex, but I just showed this workload a simple reproducible example. I can try running my workload with few thousand dummy...

There is a small bug in the code @timfel posted above. It is still measuring time for one iteration, not 50 iterations as intended. start and end time measurements must...

Thanks for the comments. Please note that when observed from Java, it was 100x slower (not just 20-30x slower) than CPython. The time for CPython was about 40ms and time...