Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Randomx to 1.2.1 and pybind11 to 2.13.4 #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/RandomX
Submodule RandomX updated 47 files
+226 −0 .github/workflows/c-cpp.yml
+38 −2 CMakeLists.txt
+3 −2 README.md
+9 −9 doc/tevador.asc
+6 −3 src/allocator.cpp
+1 −1 src/assembly_generator_x86.cpp
+1 −1 src/bytecode_machine.cpp
+7 −0 src/common.hpp
+1 −1 src/dataset.cpp
+40 −40 src/intrin_portable.h
+40 −2 src/jit_compiler.hpp
+34 −42 src/jit_compiler_a64.cpp
+1 −1 src/jit_compiler_a64.hpp
+48 −50 src/jit_compiler_a64_static.S
+1,175 −0 src/jit_compiler_rv64.cpp
+69 −0 src/jit_compiler_rv64.hpp
+1,235 −0 src/jit_compiler_rv64_static.S
+53 −0 src/jit_compiler_rv64_static.hpp
+4 −2 src/jit_compiler_x86.cpp
+37 −3 src/randomx.cpp
+11 −0 src/randomx.h
+13 −21 src/reciprocal.c
+2 −2 src/reciprocal.h
+25 −7 src/tests/benchmark.cpp
+1 −1 src/tests/perf-simulation.cpp
+9 −0 src/tests/riscv64_zba.s
+9 −0 src/tests/riscv64_zbb.s
+24 −0 src/tests/tests.cpp
+1 −0 src/tests/utility.hpp
+92 −55 src/virtual_memory.c
+16 −10 src/virtual_memory.h
+4 −4 vcxproj/api-example1.vcxproj
+4 −4 vcxproj/api-example2.vcxproj
+4 −4 vcxproj/benchmark.vcxproj
+4 −4 vcxproj/code-generator.vcxproj
+4 −4 vcxproj/jit-performance.vcxproj
+4 −4 vcxproj/perf-simulation.vcxproj
+6 −6 vcxproj/randomx-dll.vcxproj
+2 −2 vcxproj/randomx-dll.vcxproj.filters
+6 −6 vcxproj/randomx.vcxproj
+2 −2 vcxproj/randomx.vcxproj.filters
+4 −4 vcxproj/runtime-distr.vcxproj
+4 −4 vcxproj/scratchpad-entropy.vcxproj
+4 −4 vcxproj/superscalar-avalanche.vcxproj
+4 −4 vcxproj/superscalar-init.vcxproj
+4 −4 vcxproj/superscalar-stats.vcxproj
+4 −4 vcxproj/tests.vcxproj
2 changes: 1 addition & 1 deletion external/pybind11
Submodule pybind11 updated 269 files