Supermodel running on an Nvidia Jetson Nano dev kit...

I was able to successfully build and run Supermodel [SVN r811] on an Nvidia Jetson Nano devkit..
[Compiles successfully after updating a single file.... ]
Tried it with Scud Race Plus, and it achieves about 25~29 fps in-game [@720p].... so not really playable, but it seems to be running perfectly fine otherwise...
Based on the system resources, it appears to be CPU - not GPU - constrained.
Details of Nvidia Jetson Nano Developer Kit - https://developer.nvidia.com/embedded/j ... eloper-kit
- $99 [including PSU]. 4 GiB LDDR4 RAM & 4 core Aarch64 ARM CPU [Cortex A57 core, ARM v8 ISA]. Maxwell based GPU. SDCard for main storage.
- It runs an Nvidia modified/custom version of Ubunutu 18.04 LTS [for Aarch64], with a lot of Nvidia software added.
Now I'm really tempted to spring the $399 for the Jetson NX Dev Kit.. I'm sure it would perform really well with 6 "Carmel" ARM v8.2 cores and a really beefy Volta GPU onboard... plus M.2 SSD interface and 8 GiB of RAM...
Building:
I built on the nano itself [no cross compiling].
Compiling failed due to the "-mfpmath=sse" compiler flag included in file "Makefiles/Rules.inc"
I made changes locally on the machine... changing the above line to:
I hope this is useful info. Can one of the devs make the changes specific for ARM architecture, or do you want me to create a SourceForge account and try and submit some [IFDEF] changes?
[Compiles successfully after updating a single file.... ]
Tried it with Scud Race Plus, and it achieves about 25~29 fps in-game [@720p].... so not really playable, but it seems to be running perfectly fine otherwise...
Based on the system resources, it appears to be CPU - not GPU - constrained.
Details of Nvidia Jetson Nano Developer Kit - https://developer.nvidia.com/embedded/j ... eloper-kit
- $99 [including PSU]. 4 GiB LDDR4 RAM & 4 core Aarch64 ARM CPU [Cortex A57 core, ARM v8 ISA]. Maxwell based GPU. SDCard for main storage.
- It runs an Nvidia modified/custom version of Ubunutu 18.04 LTS [for Aarch64], with a lot of Nvidia software added.
Now I'm really tempted to spring the $399 for the Jetson NX Dev Kit.. I'm sure it would perform really well with 6 "Carmel" ARM v8.2 cores and a really beefy Volta GPU onboard... plus M.2 SSD interface and 8 GiB of RAM...
Building:
I built on the nano itself [no cross compiling].
Compiling failed due to the "-mfpmath=sse" compiler flag included in file "Makefiles/Rules.inc"
- Code: Select all
###############################################################################
# Compiler Flags
###############################################################################
ARCH = -march=native -mfpmath=sse
I made changes locally on the machine... changing the above line to:
- Code: Select all
ARCH = -march=armv8-a -mtune=cortex-a57
I hope this is useful info. Can one of the devs make the changes specific for ARM architecture, or do you want me to create a SourceForge account and try and submit some [IFDEF] changes?