Results 2 comments of Michael

@monkey-jsun did you just install openblas and it used all cores? i just did that but its still using only one core

my current work around was editing the docker file to the following ``` FROM python:latest WORKDIR /function ADD . /function/ ENTRYPOINT ["python3", "hello.py"] RUN pip3 install -t packages -r requirements.txt...