Experimental wasm support

This commit is contained in:
2024-03-30 16:20:55 -07:00
parent 348ebf016a
commit 215865a462
3 changed files with 73 additions and 45 deletions

View File

@@ -1,8 +1,10 @@
#include <ConflictSet.h>
#include <chrono>
#include <cstdio>
#include <cstring>
#include <fcntl.h>
#include <string_view>
#include <sys/mman.h>
#include <sys/stat.h>
#include <unistd.h>
@@ -131,4 +133,4 @@ int main(int argc, const char **argv) {
checkTime, checkBytes / checkTime * 1e-6, addTime,
addBytes / addTime * 1e-6, gcTime / (gcTime + addTime) * 1e2,
double(peakMemory));
}
}