Skip to content

Commit

Permalink
Merge pull request #50 from filecoin-project/update-gbench
Browse files Browse the repository at this point in the history
feat(gbench): customize batch-sizes of gbench through cli args
  • Loading branch information
porcuquine authored Nov 17, 2020
2 parents 8f34bbd + 94cc065 commit 170b322
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gbench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ generic-array = "0.14.4"
log = "0.4.8"
neptune = { path = "../", default-features = false, features=["gpu"] }
rust-gpu-tools = { version = "0.3.0", optional = true }
structopt = { version = "0.3", default-features = false }

[features]
default = ["pairing", "gpu"]
gpu = ["neptune/gpu", "rust-gpu-tools"]
pairing = ["neptune/pairing", "bellperson/pairing"]
blst = ["neptune/blst", "bellperson/blst"]

9 changes: 8 additions & 1 deletion gbench/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@

Benchmarking tool for Neptune.

## Usage

Running gbench with customized batch sizes on the default GPU:

`RUST_LOG=info cargo run -- --max-tree-batch-size 700000 --max-column-batch-size 400000`


## Environment variables

- `NEPTUNE_GBENCH_GPUS=<bus-id1>,<bus-id2>,...` allows you to select the GPUs you want to run gbench on given a comma-separated list of bus-ids.

(Bus-id is a decimal integer that can be found through `nvidia-smi`, `rocm-smi`, `lspci` and etc.)
16 changes: 14 additions & 2 deletions gbench/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ use rust_gpu_tools::opencl::GPUSelector;
use std::result::Result;
use std::thread;
use std::time::Instant;
use structopt::StructOpt;

fn bench_column_building(
log_prefix: &str,
Expand Down Expand Up @@ -96,17 +97,28 @@ fn bench_column_building(
res[res.len() - 1]
}

#[derive(Debug, StructOpt, Clone, Copy)]
#[structopt(name = "Neptune gbench", about = "Neptune benchmarking program")]
struct Opts {
#[structopt(long = "max-tree-batch-size", default_value = "700000")]
max_tree_batch_size: usize,
#[structopt(long = "max-column-batch-size", default_value = "400000")]
max_column_batch_size: usize,
}

fn main() -> Result<(), Error> {
#[cfg(all(feature = "gpu", target_os = "macos"))]
unimplemented!("Running on macos is not recommended and may have bad consequences -- experiment at your own risk.");
env_logger::init();

let opts = Opts::from_args();

let kib = 1024 * 1024 * 4; // 4GiB
// let kib = 1024 * 512; // 512MiB
let bytes = kib * 1024;
let leaves = bytes / 32;
let max_column_batch_size = 400000;
let max_tree_batch_size = 700000;
let max_column_batch_size = opts.max_column_batch_size;
let max_tree_batch_size = opts.max_tree_batch_size;

info!("KiB: {}", kib);
info!("leaves: {}", leaves);
Expand Down

0 comments on commit 170b322

Please sign in to comment.