zoukankan      html  css  js  c++  java
  • VECTOR COMPUTATION

    COMPUTER OR GANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION

    Although the performance of mainframe general-purpose computers continues to
    improve relentlessly, there continue to be applications that are beyond the reach of
    the contemporary mainframe. There is a need for computers to solve mathematical
    problems of physical processes, such as occur in disciplines including aerodynamics,
    seismology, meteorology, and atomic, nuclear, and plasma physics.
    Typically, these problems are characterized by the need for high precision
    and a program that repetitively performs floating-point arithmetic operations on
    large arrays of numbers. Most of these problems fall into the category known as
    continuous-field simulation. In essence, a physical situation can be described by a
    surface or region in three dimensions (e.g., the flow of air adjacent to the surface
    of a rocket). This surface is approximated by a grid of points. A set of differential
    equations defines the physical behavior of the surface at each point. The equations
    are represented as an array of values and coefficients, and the solution involves
    repeated arithmetic operations on the arrays of data.
    Supercomputers were developed to handle these types of problems. These
    machines are typically capable of billions of floating-point operations per second. In
    contrast to mainframes, which are designed for multiprogramming and intensive I/O,
    the supercomputer is optimized for the type of numerical calculation just described.
    The supercomputer has limited use and, because of its price tag, a limited
    market. Comparatively few of these machines are operational, mostly at research
    centers and some government agencies with scientific or engineering functions. As
    with other areas of computer technology, there is a constant demand to increase the
    performance of the supercomputer. Thus, the technology and performance of the
    supercomputer continues to evolve.
    There is another type of system that has been designed to address the need for
    vector computation, referred to as the array processor. Although a supercomputer
    is optimized for vector computation, it is a general-purpose computer, capable of
    handling scalar processing and general data processing tasks. Array processors do
    not include scalar processing; they are configured as peripheral devices by both
    mainframe and minicomputer users to run the vectorized portions of programs.

  • 相关阅读:
    使用node.js和socket.io实现多人聊天室
    linux上如何自动获取ip及连接互联网
    大数据 时间同步问题 解决hbase集群节点HRegionServer启动后自动关闭
    大数据环境完全分布式搭建hbase-0.96.2-hadoop2
    大数据环境完全分布式搭建 hadoop2.4.1
    大数据环境完全分布式搭建linux(centos)中安装zookeeper
    虚拟机中操作系统的克隆方法及ip修改及硬件地址修改
    在Windows系统下安装Beautiful Soup4的步骤和方法
    在eclipse中配置Python环境
    python3.4爬取网页的乱码问题
  • 原文地址:https://www.cnblogs.com/rsapaper/p/6253857.html
Copyright © 2011-2022 走看看