diff --git a/nvbench/benchmark_base.cuh b/nvbench/benchmark_base.cuh index 0ed901e..be63174 100644 --- a/nvbench/benchmark_base.cuh +++ b/nvbench/benchmark_base.cuh @@ -185,7 +185,7 @@ struct benchmark_base /// If true, the batched measurements for benchmark are not run. This is intended for use to /// save resources when only non-batched measurements are of interest, although batched - /// measurements are meaningful and code to exercise them is compiled. This option has not + /// measurements are meaningful and code to exercise them is compiled. This option has no /// effect for CPU only benchmarks and for benchmarks tagged with no_batch tag. @{ [[nodiscard]] bool get_skip_batched() const { return m_skip_batched; } benchmark_base &set_skip_batched(bool v) diff --git a/nvbench/state.cuh b/nvbench/state.cuh index 084324f..d815df7 100644 --- a/nvbench/state.cuh +++ b/nvbench/state.cuh @@ -163,7 +163,7 @@ struct state /// If true, the batched measurements of benchmark are not run. This is intended for use to /// save resources when only non-batched measurements are of interest, although batched - /// measurements are meaningful and code to exercise them is compiled. This option has not + /// measurements are meaningful and code to exercise them is compiled. This option has no /// effect for CPU only benchmarks and for benchmarks tagged with no_batch tag. @{ [[nodiscard]] bool get_skip_batched() const { return m_skip_batched; } void set_skip_batched(bool v) { m_skip_batched = v; }