-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule rpp
updated
29 files
+34 −0 | .github/workflows/linux-arm64.yml | |
+6 −4 | .github/workflows/linux.yml | |
+24 −0 | .github/workflows/macos.yml | |
+1 −1 | .github/workflows/windows.yml | |
+9 −1 | CMakeLists.txt | |
+17 −10 | README.md | |
+8 −6 | rpp/CMakeLists.txt | |
+10 −2 | rpp/async.h | |
+10 −2 | rpp/base.h | |
+4 −0 | rpp/impl/base.cpp | |
+6 −1 | rpp/impl/log.cpp | |
+1 −2 | rpp/impl/profile.cpp | |
+50 −55 | rpp/impl/simd.cpp | |
+82 −0 | rpp/impl/vmath.cpp | |
+1 −1 | rpp/net.h | |
+96 −0 | rpp/pos/async_bsd.cpp | |
+70 −0 | rpp/pos/asyncio_bsd.cpp | |
+2 −4 | rpp/pos/asyncio_pos.cpp | |
+2 −2 | rpp/pos/net_pos.cpp | |
+74 −15 | rpp/pos/thread_pos.cpp | |
+7 −0 | rpp/pos/unify.cpp | |
+6 −1 | rpp/profile.h | |
+8 −24 | rpp/simd.h | |
+2 −2 | rpp/std/coroutine.h | |
+26 −22 | rpp/thread0.h | |
+2 −2 | rpp/vmath.h | |
+2 −0 | test/net.cpp | |
+111 −0 | test/simd.cpp | |
+43 −0 | test/vmath.cpp |