Re: [Tutor] About C++ library with multiprocessing

2016-09-02 Thread Peter Otten
Yohei Uemura wrote: > Hi all, > > I'm Yohei. > I have a problem with making a script which use both multiprocessing and > C++ library. > My C++ library is made by using boost python. > The library worked well if it was imported normally. > That is, > "import simple as F > A = range(0,100) > for

[Tutor] About C++ library with multiprocessing

2016-09-02 Thread Yohei Uemura
Hi all, I'm Yohei. I have a problem with making a script which use both multiprocessing and C++ library. My C++ library is made by using boost python. The library worked well if it was imported normally. That is, "import simple as F A = range(0,100) for x in A: print F.addition(x) " However,