Update README.md
This commit is contained in:
@@ -49,3 +49,52 @@ Large language models may be used in a limited capacity during the development o
|
|||||||
LLM-generated suggestions are not treated as authoritative. Code, algorithms, numerical methods, and design decisions should be reviewed, tested, and understood before being included in the project.
|
LLM-generated suggestions are not treated as authoritative. Code, algorithms, numerical methods, and design decisions should be reviewed, tested, and understood before being included in the project.
|
||||||
|
|
||||||
The goal of PANIC is to build a readable and inspectable numerical codebase. Any use of LLM assistance should support that goal, not replace understanding, verification, or careful implementation.
|
The goal of PANIC is to build a readable and inspectable numerical codebase. Any use of LLM assistance should support that goal, not replace understanding, verification, or careful implementation.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
main.cpp
|
||||||
|
config.cpp/h?
|
||||||
|
modules/
|
||||||
|
math/
|
||||||
|
src/
|
||||||
|
sqrt.c
|
||||||
|
sqrt_serial.c
|
||||||
|
sqrt_omp.c
|
||||||
|
mul.c
|
||||||
|
mul_serial.c
|
||||||
|
mul_omp.c
|
||||||
|
include/
|
||||||
|
sqrt.h
|
||||||
|
sqrt_serial.h
|
||||||
|
sqrt_omp.h
|
||||||
|
mul.h
|
||||||
|
mul_serial.h
|
||||||
|
mul_omp.h
|
||||||
|
```
|
||||||
|
```text
|
||||||
|
main.cpp
|
||||||
|
modules/
|
||||||
|
config/
|
||||||
|
src/
|
||||||
|
config_omp.c
|
||||||
|
include/
|
||||||
|
config_omp.h
|
||||||
|
math/
|
||||||
|
src/
|
||||||
|
serial/
|
||||||
|
sqrt_serial.c
|
||||||
|
mul_serial.c
|
||||||
|
omp/
|
||||||
|
sqrt_omp.c
|
||||||
|
mul_omp.c
|
||||||
|
sqrt.c
|
||||||
|
include/
|
||||||
|
serial/
|
||||||
|
sqrt_serial.h
|
||||||
|
mul_serial.h
|
||||||
|
omp/
|
||||||
|
sqrt_omp.h
|
||||||
|
mul_omp.h
|
||||||
|
sqrt.h
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user