Intel OpenMP support n Jetson

Hello, I am trying to get a program to run on my Jetson that requires Intel OpenMP. I am trying to see if it is possible to install this on my Jetson, and so far I haven’t really found anything. I know that pip installing fails to find a compatible version, and I don’t know where else to look. Would really appreciate any input! Thanks.

I haven’t tried it myself, but maybe you would want to try:

sudo apt update
sudo apt search libiomp

# If it looks ok to you, you may install with:
sudo apt install libiomp-dev

Wow, this worked perfectly. Thanks a lot for the quick reply!