1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//! Get the number of CPUs available on the current system.
//!
//! Sometimes the CPU will exaggerate the number of CPUs it contains, because it
//! can use [processor tricks](https://en.wikipedia.org/wiki/Simultaneous_multithreading)
//! to deliver increased performance when there are more threads.
//! This crate provides methods to get both the logical and physical numbers of cores.
//!
//! This information can be used as a guide to how many tasks can be run in parallel.
//! There are many properties of the system architecture that will affect parallelism,
//! for example memory access speeds (for all the caches and RAM) and the physical
//! architecture of the processor, so the number of CPUs should be used as a rough guide only.
extern crate deno_core;
extern crate num_cpus;
use ;
/// Initializing the Deno plugin.
/// Get the number of CPUs available on the current system.
///
/// Use in Deno:
///
/// ```ts
/// const { op_num_cpus } = Deno.core.ops();
/// const response: Uint8Array = Deno.core.dispatch(op_num_cpus)!;
/// ```
///
/// Returned Binary Layout:
///
/// ```
/// +----------------+----------------+----------------+----------------+
/// | NUM_CPUS (8) | | | |
/// +----------------+----------------+----------------+----------------+
/// ```
///
/// The number of cpu on each machine will not be greater than 256(2^8),
/// so we use 1 byte to pass the return value.