We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35f983d commit 5d7ca04Copy full SHA for 5d7ca04
lib/kpi/src/process.rs
@@ -7,9 +7,9 @@ use serde::{Deserialize, Serialize};
7
use x86::bits64::paging::PML4_SLOT_SIZE;
8
9
/// Max number of machines supported by the process allocator.
10
-pub const MAX_MACHINES: usize = 8;
+pub const MAX_MACHINES: usize = 4;
11
12
-pub const MAX_CORES_PER_MACHINE: usize = 12;
+pub const MAX_CORES_PER_MACHINE: usize = 24;
13
14
/// Max number of cores supported by the process allocator.
15
pub const MAX_CORES: usize = 96; // MAX_MACHINES * MAX_CORES_PER_MACHINE;
0 commit comments