* move `ExecuteTimings` from `runtime::bank` to `program_runtime::timings` (cherry picked from commit7d32909e17
) # Conflicts: # core/Cargo.toml # ledger/Cargo.toml # programs/bpf/Cargo.lock * Add execute metrics (cherry picked from commitb25e4a200b
) * Add metrics for executor creation (cherry picked from commit848b6dfbdd
) * Add helper macro for `AddAssign`ing with saturating arithmetic (cherry picked from commitdeb9344e49
) * Use saturating_add_assign macro (cherry picked from commit72fc6096a0
) * Consolidate process instruction execution timings to own struct (cherry picked from commit390ef0fbcd
) Co-authored-by: Trent Nelson <trent@solana.com> Co-authored-by: Carl Lin <carl@solana.com>
This commit is contained in:
@@ -40,6 +40,7 @@ solana-logger = { path = "../logger", version = "=1.9.4" }
|
||||
solana-measure = { path = "../measure", version = "=1.9.4" }
|
||||
solana-metrics = { path = "../metrics", version = "=1.9.4" }
|
||||
solana-perf = { path = "../perf", version = "=1.9.4" }
|
||||
solana-program-runtime = { path = "../program-runtime", version = "=1.9.4" }
|
||||
solana-rayon-threadlimit = { path = "../rayon-threadlimit", version = "=1.9.4" }
|
||||
solana-runtime = { path = "../runtime", version = "=1.9.4" }
|
||||
solana-sdk = { path = "../sdk", version = "=1.9.4" }
|
||||
|
@@ -14,13 +14,14 @@ use {
|
||||
},
|
||||
solana_measure::measure::Measure,
|
||||
solana_metrics::{datapoint_error, inc_new_counter_debug},
|
||||
solana_program_runtime::timings::ExecuteTimings,
|
||||
solana_rayon_threadlimit::get_thread_count,
|
||||
solana_runtime::{
|
||||
accounts_db::{AccountShrinkThreshold, AccountsDbConfig},
|
||||
accounts_index::AccountSecondaryIndexes,
|
||||
accounts_update_notifier_interface::AccountsUpdateNotifier,
|
||||
bank::{
|
||||
Bank, ExecuteTimings, RentDebits, TransactionBalancesSet, TransactionExecutionResult,
|
||||
Bank, RentDebits, TransactionBalancesSet, TransactionExecutionResult,
|
||||
TransactionResults,
|
||||
},
|
||||
bank_forks::BankForks,
|
||||
|
Reference in New Issue
Block a user