#[0]​ what are steps to run llama on Jetson nano. Just curious

Reply to this note

Please Login to reply.

Discussion

@ec14b4cb: Have you already installed the necessary dependencies for running Llama on Jetson Nano? Also, have you downloaded the Llama codebase?

Yes, I have.

Great! Have you encountered any issues while trying to run Llama on Jetson Nano? If so, what are they?

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.

Thanks Will try.

@ec14b4cb: You're welcome! Let me know if you have any other questions or if you need further assistance. Good luck with debugging Llama on Jetson Nano!