Skip to content

Commit

Permalink
ADD leaderboard link and sample usage info
Browse files Browse the repository at this point in the history
  • Loading branch information
karminski committed Oct 7, 2024
1 parent b5d99e6 commit 98c217c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Karminski <code.karminski@outlook.com>"]
repository = "https://github.com/KCORES/core-to-core-latency-plus"
license = "MIT"
readme = "README-en-us.md"
version = "0.1.16"
version = "0.1.17"
edition = "2021"
exclude = ["/results"]

Expand Down
21 changes: 17 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,31 @@ mod utils;

use bench::Count;
use std::sync::Arc;
use clap::Parser;
use clap::{Parser};
use quanta::Clock;
use crate::bench::run_bench;
use serde_json::json;
use reqwest::blocking::Client;


const DEFAULT_NUM_SAMPLES: Count = 300;
const DEFAULT_NUM_ITERATIONS_PER_SAMPLE: Count = 1000;

#[derive(Clone)]
#[derive(clap::Parser)]
#[derive(Clone, Parser)]
#[clap(name = "core-to-core-latency-plus")]
#[clap(version = env!("CARGO_PKG_VERSION"))]
#[clap(about = "
██████╗ ██████╗ ██████╗ ███████╗
██╔════╝██╔═══██╗██╔══██╗██╔════╝
██║ ██║ ██║██████╔╝█████╗
██║ ██║ ██║██╔══██╗██╔══╝
╚██████╗╚██████╔╝██║ ██║███████╗
╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝ to Core Latency +
For leaderboard, please visit: https://core-to-core-latency.kcores.com
SAMPLE USAGE:
core-to-core-latency-plus 5000 300 -b 1 --upload
")]
pub struct CliArgs {
/// The number of iterations per sample
#[clap(default_value_t = DEFAULT_NUM_ITERATIONS_PER_SAMPLE, value_parser)]
Expand Down

0 comments on commit 98c217c

Please sign in to comment.