Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: How to add multihreading to a continuous SECP256K1 Python function?
by
NotATether
on 07/11/2022, 17:31:48 UTC
⭐ Merited by ETFbitcoin (1)
best approach to python multithreading is to use c++ instead.

Exactly what I was going to say!

I wrote a secp256k1 python tool for my friend - it was dog-slow so he asked me to rewrite it in C++. Python was never really made for parallel computing anyway, that's why all the python packages that do all the scientific heavy-lifting such as numpy are written in C.