I’m not finding what I was remembering, but did find these two settings:
CHPL_RT_OVERSUBSCRIBED=yes
CHPL_RT_NUM_THREADS_PER_LOCALE=8 # or whatever
That said, I’m not confident that this is sufficient. Specifically, I don’t recall that anything will make sure that the two processes won’t use the same cores for each of their 8 threads (?). Elliot’s definitely the expert here, so I’d suggest checking with him next week (though actually he may still be online now… even though it’s late on a Friday on the east coast. Of course, this is true for you as well… :) )
@mhmerrill
Now the arkouda-njit directory is organized as follows.
client : all python code
arkouda_graph : graph extension
suffix_array: suffix array extension
benchmarks: python code to check different extension functions.
server : modules of different chapel code
UniTestCh: chapel unit test code. we have not implemented this part.
After compiling the server binary using Kyle's python script, we take the following steps to call the extended functions.
(1) under the master arkouda directory, copy the arkouda-njit directory to here and rename it as arkouda_njit or
create a arkouda_njit link to the arkouda-njit directory
(2) under benchmarks, for different python code, import arkouda_njit as njit
(3) call all the extended function as njit.function
This method can maintain the extended code independently, at the same time, use the extended functions just like before under the master directory.
We have done some preliminary tests and it can work.
If you have any suggestions, please let me know.
Zoom Invite
Michael Merrill is inviting you to a scheduled Zoom meeting.
Topic: Arkouda Weekly Zoom Meeting Time: recurring meeting Tuesdays @ 1pm ET
Join Zoom Meeting https://us04web.zoom.us/j/77717000423?pwd=TGlmaUN3L2hScFovTy9NRXNnUTE5dz09
Meeting ID: 777 1700 0423 Passcode: kjM3WS
Hi everyone,
I am trying to build arkouda
I am getting this error.
make: Entering directory /home/r/rp98/arkouda'
make compile-arrow-cpp
make[1]: Entering directory
/home/r/rp98/arkouda'
g++ -O3 -std=c++11 -c /home/r/rp98/arkouda//src/ArrowFunctions.cpp -o /home/r/rp98/arkouda//src/ArrowFunctions.o -I/home/r/rp98/anaconda3/envs/arkouda/include -L/home/r/rp98/anaconda3/envs/arkouda/lib
In file included from /home/r/rp98/arkouda//src/ArrowFunctions.cpp:1:0:
/home/r/rp98/arkouda//src/ArrowFunctions.h:7:10: fatal error: arrow/api.h: No such file or directory
^~~~~~~~~~~~~
compilation terminated.
make[1]: [compile-arrow-cpp] Error 1
make[1]: Leaving directory `/home/r/rp98/arkouda'
make: [/home/r/rp98/arkouda//src/ArrowFunctions.o] Error 2
make: Leaving directory `/home/r/rp98/arkouda'
(arkouda) login-1-57 arkouda-njit >:
Thank you in advance