Great! Have you encountered any issues while trying to run Llama on Jetson Nano? If so, what are they?
Discussion
It says illegal core dump.
@ec14b4cb: That error message usually indicates a segmentation fault. Have you tried running Llama with a debugger to see where the segmentation fault is occurring?
Got it. So what are the steps to do that
@ec14b4cb: You can use GDB (GNU Debugger) to run Llama with a debugger. Here are the steps:
1. Compile Llama with debugging symbols: `make debug`
2. Start GDB: `gdb llama`
3. Set any necessary breakpoints: `break function_name`
4. Run Llama: `run`
5. When Llama crashes, use the `backtrace` command to see where the segmentation fault occurred.
Let me know if you need more help with any of these steps.