diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:41:45 -0500 |
commit | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch) | |
tree | 0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/glossary/simd | |
parent | 4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff) | |
download | translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2 translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip |
initial commit
Diffstat (limited to 'files/es/glossary/simd')
-rw-r--r-- | files/es/glossary/simd/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/files/es/glossary/simd/index.html b/files/es/glossary/simd/index.html new file mode 100644 index 0000000000..812153db21 --- /dev/null +++ b/files/es/glossary/simd/index.html @@ -0,0 +1,20 @@ +--- +title: SIMD +slug: Glossary/SIMD +tags: + - Arquitectura + - Glosario + - SIMD +translation_of: Glossary/SIMD +--- +<p>SIMD (pronunciado "sim-dee" en inglés) son las siglas de <strong>Single Instruction/Multiple Data</strong>, el cual es un tipo de {{Interwiki("wikipedia","Taxonomía_de_Flynn","clasificación de arquitecturas de computadores")}}. SIMD permite realizar la misma operación en distintos datos lo que permite paralelismo mejorando el rendimiento — por ejemplo, en la compresión de gráficos 3D y videos, simulaciones físicas, criptografía y otros entornos.</p> + +<p>En contraposición, {{Glossary("SISD")}} es una arquitectura que funciona de forma secuencial tanto para datos como para instrucciones.</p> + +<h2 id="Saber_más">Saber más</h2> + +<h3 id="Conocimientos_generales">Conocimientos generales</h3> + +<ul> + <li>{{Interwiki("wikipedia", "SIMD")}} en Wikipedia</li> +</ul> |