oblivious$54295$ - translation to ισπανικά
Diclib.com
Λεξικό ChatGPT
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:

Μετάφραση και ανάλυση λέξεων από την τεχνητή νοημοσύνη ChatGPT

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

oblivious$54295$ - translation to ισπανικά

I/O-EFFICIENT ALGORITHM REGARDLESS OF CACHE SIZE
Cache-oblivious; Cache oblivious; Cache oblivious model; Cache-oblivious model
  • M}} objects. The external memory on the right is unbounded.

oblivious      
adj. inconsciente, abstraído; olvidadizo
fault tolerant         
  • clients]] without JavaScript support and/or incompatible browsers until December 2020.
ABILITY OF A SYSTEM TO CONTINUE FUNCTIONING DESPITE ERRONEOUS INPUTS OR FAULTS WITHIN SOME OF ITS COMPONENTS
Fault-tolerance; Fault Tolerance; Graceful degradation; Failure-oblivious computing; Fault-tolerant; Fault-tolerant system; Fault tolerant systems; Fault tolerant designs; Fault-tolerant designs; Fault-tolerant systems; Graceful failure; Fail gracefully; Fault tolerant system; Fault tolerant design; Fail-safe (computer); Failure oblivious computing; Damage tolerant design; Degrade gracefully; Fault-tolerant computer system; Fail soft; Fail-soft operation; Fault-tolerant computer systems; Failure resistance; Fault-tolerant design; Fault tolerant; Fault-tolerant computing; Degrades gracefully; Failure tolerance; Single fault condition; Single Fault Condition
(adj.) = tolerante al error
Ex: More reliable storage, networking and software contribute to fault tolerant systems.
Fault-tolerant system         
  • clients]] without JavaScript support and/or incompatible browsers until December 2020.
ABILITY OF A SYSTEM TO CONTINUE FUNCTIONING DESPITE ERRONEOUS INPUTS OR FAULTS WITHIN SOME OF ITS COMPONENTS
Fault-tolerance; Fault Tolerance; Graceful degradation; Failure-oblivious computing; Fault-tolerant; Fault-tolerant system; Fault tolerant systems; Fault tolerant designs; Fault-tolerant designs; Fault-tolerant systems; Graceful failure; Fail gracefully; Fault tolerant system; Fault tolerant design; Fail-safe (computer); Failure oblivious computing; Damage tolerant design; Degrade gracefully; Fault-tolerant computer system; Fail soft; Fail-soft operation; Fault-tolerant computer systems; Failure resistance; Fault-tolerant design; Fault tolerant; Fault-tolerant computing; Degrades gracefully; Failure tolerance; Single fault condition; Single Fault Condition
Sistema tolerante a fallos

Βικιπαίδεια

Cache-oblivious algorithm

In computing, a cache-oblivious algorithm (or cache-transcendent algorithm) is an algorithm designed to take advantage of a processor cache without having the size of the cache (or the length of the cache lines, etc.) as an explicit parameter. An optimal cache-oblivious algorithm is a cache-oblivious algorithm that uses the cache optimally (in an asymptotic sense, ignoring constant factors). Thus, a cache-oblivious algorithm is designed to perform well, without modification, on multiple machines with different cache sizes, or for a memory hierarchy with different levels of cache having different sizes. Cache-oblivious algorithms are contrasted with explicit loop tiling, which explicitly breaks a problem into blocks that are optimally sized for a given cache.

Optimal cache-oblivious algorithms are known for matrix multiplication, matrix transposition, sorting, and several other problems. Some more general algorithms, such as Cooley–Tukey FFT, are optimally cache-oblivious under certain choices of parameters. As these algorithms are only optimal in an asymptotic sense (ignoring constant factors), further machine-specific tuning may be required to obtain nearly optimal performance in an absolute sense. The goal of cache-oblivious algorithms is to reduce the amount of such tuning that is required.

Typically, a cache-oblivious algorithm works by a recursive divide-and-conquer algorithm, where the problem is divided into smaller and smaller subproblems. Eventually, one reaches a subproblem size that fits into the cache, regardless of the cache size. For example, an optimal cache-oblivious matrix multiplication is obtained by recursively dividing each matrix into four sub-matrices to be multiplied, multiplying the submatrices in a depth-first fashion. In tuning for a specific machine, one may use a hybrid algorithm which uses loop tiling tuned for the specific cache sizes at the bottom level but otherwise uses the cache-oblivious algorithm.