Skip to content

Commit

Permalink
Renamed, fixed backslashes.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Sep 25, 2023
1 parent ac7252c commit 4bb3804
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Microbenchmark

Here are instructions on running and tuning the `microbenchmark-pages` target.

```bash
# On Windows
% cmake src -B build
% cmake --build build --config Release
% .\build\Release\microbenchmark-pages.exe

# On other platforms
% cmake src -B build -DCMAKE_BUILD_TYPE=Release
% cmake --build build
% .\build\microbenchmark-pages.exe

# TODO: Maybe these can be merged into one, just needs testing.
```

Settings can be set using CMake at configuration time (the first step).

```bash
% cmake src -B build -DMBP_OBJECT_SIZE=32 -DMBP_OBJECT_DISTANCE=4096
```

0 comments on commit 4bb3804

Please sign in to comment.