mirror of
https://github.com/nushell/nushell
synced 2024-12-26 13:03:07 +00:00
add parameter to set thread count for parallel commands (#4424)
This commit is contained in:
parent
a16e485cce
commit
968ef1e953
3 changed files with 22 additions and 1 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -2123,6 +2123,7 @@ dependencies = [
|
|||
"nu_plugin_query",
|
||||
"pretty_assertions",
|
||||
"pretty_env_logger",
|
||||
"rayon",
|
||||
"reedline",
|
||||
"rstest",
|
||||
"serial_test",
|
||||
|
|
|
@ -52,6 +52,7 @@ nu-system = { path = "./crates/nu-system", version = "0.59.0" }
|
|||
nu-table = { path = "./crates/nu-table", version = "0.59.0" }
|
||||
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.59.0" }
|
||||
pretty_env_logger = "0.4.0"
|
||||
rayon = "1.5.1"
|
||||
reedline = { git = "https://github.com/nushell/reedline", branch = "main" }
|
||||
# mimalloc = { version = "*", default-features = false }
|
||||
|
||||
|
|
21
src/main.rs
21
src/main.rs
|
@ -14,7 +14,7 @@ use crate::logger::{configure, logger};
|
|||
use log::info;
|
||||
use miette::Result;
|
||||
use nu_command::{create_default_context, BufferedReader};
|
||||
use nu_engine::get_full_help;
|
||||
use nu_engine::{get_full_help, CallExt};
|
||||
use nu_parser::parse;
|
||||
use nu_protocol::{
|
||||
ast::{Call, Expr, Expression, Pipeline, Statement},
|
||||
|
@ -103,6 +103,7 @@ fn main() -> Result<()> {
|
|||
|| arg == "--loglevel"
|
||||
|| arg == "--config-file"
|
||||
|| arg == "--perf"
|
||||
|| arg == "--threads"
|
||||
{
|
||||
collect_arg_nushell = true;
|
||||
}
|
||||
|
@ -122,6 +123,15 @@ fn main() -> Result<()> {
|
|||
|
||||
match parsed_nu_cli_args {
|
||||
Ok(binary_args) => {
|
||||
if let Some(t) = binary_args.threads {
|
||||
// 0 means to let rayon decide how many threads to use
|
||||
let threads = t.as_i64().unwrap_or(0);
|
||||
rayon::ThreadPoolBuilder::new()
|
||||
.num_threads(threads as usize)
|
||||
.build_global()
|
||||
.expect("error setting number of threads");
|
||||
}
|
||||
|
||||
set_is_perf_value(binary_args.perf);
|
||||
|
||||
if binary_args.perf {
|
||||
|
@ -248,6 +258,7 @@ fn parse_commandline_args(
|
|||
let commands: Option<Expression> = call.get_flag_expr("commands");
|
||||
let testbin: Option<Expression> = call.get_flag_expr("testbin");
|
||||
let perf = call.has_flag("perf");
|
||||
let threads: Option<Value> = call.get_flag(engine_state, &mut stack, "threads")?;
|
||||
|
||||
let commands = if let Some(expression) = commands {
|
||||
let contents = engine_state.get_span_contents(&expression.span);
|
||||
|
@ -293,6 +304,7 @@ fn parse_commandline_args(
|
|||
commands,
|
||||
testbin,
|
||||
perf,
|
||||
threads,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -311,6 +323,7 @@ struct NushellCliArgs {
|
|||
commands: Option<Spanned<String>>,
|
||||
testbin: Option<Spanned<String>>,
|
||||
perf: bool,
|
||||
threads: Option<Value>,
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
|
@ -349,6 +362,12 @@ impl Command for Nu {
|
|||
SyntaxShape::Filepath,
|
||||
"name of the optional script file to run",
|
||||
)
|
||||
.named(
|
||||
"threads",
|
||||
SyntaxShape::Int,
|
||||
"threads to use for parallel commands",
|
||||
Some('t'),
|
||||
)
|
||||
.rest(
|
||||
"script args",
|
||||
SyntaxShape::String,
|
||||
|
|
Loading…
Reference in a new issue