README.md grammar

This commit is contained in:
NunoSempere 2023-06-02 16:26:05 -06:00
parent d2bca155b8
commit fa4311c131

View File

@ -2,9 +2,9 @@
This repository contains a few implementations of a simple botec (back-of-the-envelope) calculation in C:
- In the folder C-01-simple/, you can see a simple implementation, which passes large arrays
- In the folder C-01-simple/, you can see a simple implementation, which passes large arrays around
- In the folder C-02-better-algorithm-one-thread/ you can see a better implementations, that passes around pointers to functions, which makes the implementation more efficient
- In the top level, you can see an implementation that uses the better implementation in C-02..., and that also implements multithreading using OpenMP
- The top level samples.c uses the algorithm improvements in C-02..., and also implements multithreading using OpenMP
## To do