Dmytro Yaroshenko

Results 149 comments of Dmytro Yaroshenko

@serhiy-yevtushenko Use pure python mostly for debug Cythonic for performance

@serhiy-yevtushenko Yes, the speed of cython for calculation with the flag extra_data=True is not very high, this is fair, because even with all the implemented optimizations and reducing the number...

So what are the comments on the timeit results? As you can see in your case cython is 1.8 times faster with extra_data=True and almost 6 times faster with extra_data=False....

The code is currently optimized as far as my knowledge allows. The only thing I see that could be improved is to add cython versions of classes that are not...

@serhiy-yevtushenko In fact, numpy and scipy will be slower than cython in this case, one of the reasons is numpy vectors are not optimized for working with small vectors like...

@serhiy-yevtushenko I tried to switch from python list to c-array in for CurvePoints tooday and i got about 5-10% better performance with extra_data=True, but also i got unexpected return values...

After such a refactoring, it will not matter how low-level the method is implemented, it can be completely written in another language, or even executable on a remote server, all...

All this would allow me to focus on implementing the functionality, and let’em cook, who’s better versed math and ballistics

> Sorting can be done in Shot's **post_init**. Hey guys, im new to open source. Im not a math guy, but i like guns. Can i try to commit to...