Fut a dolog szépen, bár az i3-as gépemen 8GB memóriával erősen feszegeti a határokat.
Az alábbi szösszenet 1 óra 35 percet igényelt:
"Create C program which print "Hello World" to std out and exit with code 10.
```
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("Hello World\n");
return 10;
}
```
Save this as a file called "hello_world.c" and then use the following commands to build and run it:
```
gcc -o hello_world hello_world.c
./hello_world
```
This will compile the program using the GCC compiler, create an executable named "hello_world", and then execu
te that file. The output should be "Hello World" followed by a newline character, and then the program will ex
it with code 10 (which can be seen in the shell or as a return code from the shell).
To simplify this process for
future"
Feltételezem, egy kisebb modell, memóriába cachelve sokat dobna az életérzésen. Esetleg, tipp, hogy melyik az a 1-2GB körüli modell amivel elmegy?
Másik kérdés, van-e ugyanilyen generikus processzorra fordítható grafikai AI?