首页 > 其他分享 >Processing Unit

Processing Unit

时间:2023-03-09 16:25:00浏览次数:53  
标签:processing Processing Unit CPU unit 处理器

Abbreviation English full name 中文
APU Accelerated Processing Unit 加速处理器
BPU Brain Processing Unit 大脑处理器
CPU Central Processing Unit 中央处理器
DPU Deep learning Processing Unit 深度学习处理器
EPU Emotion Processing Unit 情感处理器
FPU Floating-point Unit 浮点运算器
GPU Graphics Processing Unit 图形处理器
HPU Holographics Processing Unit 全息图像处理器
IPU Intelligence Processing Unit 智能处理器
JPU
KPU Knowledge Processing Unit 知识处理器
LPU
MPU Mind / Mobile / Motion Processing Unit 意念/移动/运动处理器
NPU Neural network Processing Unit 神经网络处理器
OPU Optical-Flow Processing Unit 光流处理器
PPU Physical Processing Unit 物理处理器
QPU Quantum Processing Unit 量子处理器
RPU Resistive Processing Unit 阻抗处理单元
SPU Streaming / Space Processing Unit 流/空间处理器
TPU Tensor Processing Unit 张量处理器
UPU
VPU Vector Processing Unit 矢量处理器
WPU
XPU
YPU
ZPU

APU - Accelerated Processing Unit

​ An accelerated processing unit (APU) is a microprocessor that combines the central processing unit (CPU) with the graphics processing unit (GPU) on a single computer chip.

​ AMD created APU (accelerated processing unit) processors in 2011. They refer to AMD CPUs that have integrated graphics. While APU sounds like any normal computer chip, it actually is solely used by AMD like the brand name of the CPU/GPU combo chips they manufacture.

BPU - Brain Processing Unit

​ The BPU(Brain Processing Unit) is an embedded artificial intelligence processor architecture proposed by Horizon Technology.

img

CPU - Central Processing Unit

​ The Central Processing Unit (CPU) is the primary component of a computer that acts as its “control center.” The CPU, also referred to as the “central” or “main” processor, is a complex set of electronic circuitry that runs the machine’s operating system and apps. The CPU interprets, processes and executes instructions, most often from the hardware and software programs running on the device.

​ The CPU performs arithmetic, logic, and other operations to transform data input into more usable information output. While the CPU must contain at least one processing core, many contain multiple cores. A server with two hexa-core CPUs.

Architecture Of A Cpu Von Neuman Architecture

DPU - Deep learning Processing Unit

​ The deep-learning processor unit (DPU) is a programmable engine optimized for deep neural networks.

​ The DPU is released with the Vitis AI specialized instruction set, thus facilitating the efficient implementation of deep learning networks.

image-20230309155125320

EPU

FPU - Floating-point unit

​ In general-purpose computer architectures, one or more FPUs may be integrated as execution units within the central processing unit.

GPU - Graphics Processing Unit

​ A graphics processing unit (GPU) is an electronic circuit designed to process images and accelerate the rendering of 3D computer graphics on consumer devices.

HPU

IPU

KPU

LPU

MPU

NPU - Neural network Processing Unit

​ A neural processing unit (NPU) is a microprocessor that specializes in the acceleration of machine learning algorithms, typically by operating on predictive models such as artificial neural networks (ANNs) or random forests (RFs). It is, also, known as neural processor.

OPU

PPU

QPU - Quantum Processing Unit

​ A quantum processing unit (QPU), also referred to as a quantum chip, is a physical (fabricated) chip that contains a number of interconnected qubits. It is the foundational component of a full quantum computer, which includes the housing environment for the QPU, the control electronics, and many other components.

RPU

SPU

TPU - Tensor Processing Unit

​ Tensor Processing Units are Google's ASIC for machine learning. TPUs are specifically used for deep learning to solve complex matrix and vector operations. TPUs are streamlined to solve matrix and vector operations at ultra-high speeds but must be paired with a CPU to give and execute instructions. TPUs may only be used with Google's TensorFlow or TensorFlow Lite platform, whether through cloud computing or its lite version on local hardware.

UPU

VPU - Vector Processing Unit

​ Vector processing units (VPUs) perform the actual work of computing a SIMD vector operation in parallel.

​ Many of today's server-class Intel processors, including those on Stampede2, are equipped with two VPUs per core.

WPU

XPU

YPU

ZPU


Reference

CPU/GPU/TPU/NPU...XPU都是什么意思?

What is an Accelerated Processing Unit?

Control Processing Unit (CPU)

Architecture of a CPU

Deep-Learning Processor Unit - 3.0 English - Xilinx

What is Neural processing unit (NPU)?

The Quantum Processing Unit (QPU)

What Is a TPU (Tensor Processing Unit) and What Is It Used For?

Vectorization: Vector Processing Units

标签:processing,Processing,Unit,CPU,unit,处理器
From: https://www.cnblogs.com/ining/p/17198902.html

相关文章

  • Unity Awake()与Start()的区别
    简单说明一下,Awake在MonoBehavior创建后就立刻调用,Start将在MonoBehavior创建后在该帧Update之前,在该Monobehavior.enabled==true的情况下执行。unity中的解释:Awake()......
  • Android工程接入UnityLibrary工程
    目录结构Unity工程指UnityLibrary目录下文件;安卓工程指app目录下文件;整体指App目录下不包括app和UnityLibrary;1.Unity打包时勾选导出安卓工程;拷贝gradle.properties......
  • Unity SkinMesh之如何分割SubMesh
    可参考:http://answers.unity3d.com/questions/1213025/separating-submeshes-into-unique-meshes.html代码如下:1usingUnityEditor;2usingUnityEngine;3usi......
  • [chatGPT]unity中,我希望一个角色有一个链表能获取到场上所有“creature”的transform,
    关键字:unity游戏对象管理,unity,unity实例管理,unity触发方法我unity中,我希望一个角色有一个链表能获取到场上所有“creature”的transform,当creature增加或减少时刷新这个......
  • 命令行中使用junit5进行类测试
    还是比较喜欢单独jar包的形式,自己编译又总是不成功。junit4与junit5语法不完全兼容。 用户手册中提到,有个适合在命令行执行的jar包https://junit.org/junit5/docs/curr......
  • python unittest
    shttps://docs.python.org/zh-cn/3.10/library/unittest.htmlhttps://softdown02.rbread05.cn/down/unittest2-0.5.1.tar.zip 一、unittest编写规范1、unittest ......
  • PyUint测试框架:unittest
    unittest是python的内置模块,支持自动化测试,测试用例间可共享setUp(测试前的初始化)以及测试后的清理工作terDown,可以将测试用例合并为集合执行,然后输出测试报告1基本概......
  • Unity 测试Transform cache和不cache的区别
    关于Transform的cache问题:大致看了下:https://forum.unity.com/threads/cache-transform-really-needed.356875/Transformcache的却会好一点点 有种Lazy的方式可以......
  • 日本国土交通部在Unity商店发布“全日本城市3D模型”,全部免费用!
    日本国土交通部在Unity商店发布“全日本城市3D模型”,全部免费用!投递人 itwriter 发布于 2023-03-0312:20 评论(0) 有2076人阅读 原文链接 [收藏] « »......
  • python-unittest(部分笔记)
    自带的单元测试框架:创建一个类,必须继承单元测试用例的类——(unittest.TestCase)单元测试的两部分: ①代码级别的功能验证          ②逻辑覆盖单元测试框架......