-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only import sionna and mitsuba work on Mac and on Arm N1, mitsuba is not even compiling. #423
Comments
Mac:try:
import sionna
print("sionna imported successfully")
except ImportError:
print("Failed to import sionna")
try:
import mitsuba
print("mitsuba imported successfully")
except ImportError:
print("Failed to import mitsuba")
sionna imported successfully
mitsuba imported successfully
constellation = sionna.mapping.Constellation("qam", 8)
print(constellation)
<Constellation name=constellation_5, built=False> I tried on my Mac. I was able to install Sionna and Mitsuba. And, import statements were also working as you can see above. pip3 --version ARMOn Arm, mitsuba installation using pip is not supported. There are no proper platform supportive .whl files to build mitsuba3 from source, I believe. Because build is not successful on Arm. So even importing mitsuba is not successful on Arm but it works on Mac. These issues were not faced on x86. Hello world test gave the following output on MAC
|
Hello @GayathriNarayana19, MacCould you please report specific error messages for the problem you are encountering? ARMAs far as I am aware, we have not validated Sionna on Arm N1. However, the error message that you shared is in Keras. |
Hello world program from sionna/examples gave the following error on Mac
Detailed issue explained in comments below. Kindly help.
The text was updated successfully, but these errors were encountered: