CPU time - traduzione in spagnolo
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

CPU time - traduzione in spagnolo

AMOUNT OF TIME FOR WHICH A CENTRAL PROCESSING UNIT (CPU) WAS USED FOR PROCESSING INSTRUCTIONS OF A COMPUTER PROGRAM OR OPERATING SYSTEM, AS OPPOSED TO, FOR EXAMPLE, WAITING FOR INPUT/OUTPUT (I/O) OPERATIONS OR ENTERING LOW-POWER (IDLE) MODE
CPUtime; Cputime; Process time; CPU usage; Computer time; Cpu usage; Cpu time; CPU utilization
  • top]]'s display of the CPU time of various processes on a [[Unix-like]] ([[GNU]]/[[Linux]]) system
  • CPU color time for program P1}}

cpu time         
tiempo UCP
CPU time         
(n.) = tiempo de CPU
Ex: CPU time is the time taken by the computer to process a set of instructions.
computer time         
tiempo de computadora (tiempo en que se usa la computadora; el tiempo que le lleva a una computadora procesar datos especiales)

Definizione

socket
(soporte) conector eléctrico, toma de corriente, enchufe. / Un socket es el punto final de una conexión. / Método de comunicación entre un programa cliente y un programa servidor en una redred (véase cliente/servidorcliente/servidor ).

Wikipedia

CPU time

CPU time (or process time) is the amount of time for which a central processing unit (CPU) was used for processing instructions of a computer program or operating system, as opposed to elapsed time, which includes for example, waiting for input/output (I/O) operations or entering low-power (idle) mode. The CPU time is measured in clock ticks or seconds. Often, it is useful to measure CPU time as a percentage of the CPU's capacity, which is called the CPU usage. CPU time and CPU usage have two main uses.

The CPU time is used to quantify the overall empirical efficiency of two functionally identical algorithms. For example any sorting algorithm takes an unsorted list and returns a sorted list, and will do so in a deterministic number of steps based for a given input list. However a bubble sort and a merge sort have different running time complexity such that merge sort tends to complete in fewer steps. Without any knowledge of the workings of either algorithm a greater CPU time of bubble sort shows it is less efficient for particular input data than merge sort.

This type of measurement is especially useful when comparing like algorithms that are not trivial in complexity. In this case the wall time (actual duration elapsed) is irrelevant, the computer may execute the program slower or faster depending on real world variables such as the CPU's temperature, as well as other operating system variables, such as the process's priority.

The CPU usage is used to quantify how the processor is shared between computer programs. High CPU usage by a single program may indicate that it is highly demanding of processing power or that it may malfunction; for example, it has entered an infinite loop. CPU time allows measurement of the processing power a single program requires, eliminating interference, such as time executed waiting for input or being suspended to allow other programs to run.

In contrast, elapsed real time (or simply real time, or wall-clock time) is the time taken from the start of a computer program until the end as measured by an ordinary clock. Elapsed real time includes I/O time, any multitasking delays, and all other types of waits incurred by the program.