Home Technology peripherals AI IBM uses analog computing for artificial intelligence to reshape AI computing

IBM uses analog computing for artificial intelligence to reshape AI computing

Aug 14, 2023 pm 02:13 PM
AI ai ibm

IBM uses analog computing for artificial intelligence to reshape AI computing

IBM has been researching ways to reshape the way artificial intelligence computes. IBM researchers have published a paper describing a breakthrough in using analog computing for artificial intelligence (AI).

When building an artificial intelligence system, the data model needs to be trained. It is to assign different weights to different subsets of training data, such as image data describing different characteristics of cats.

When training an artificial intelligence system on a traditional (digital) computer, the artificial intelligence model is stored dispersedly in memory. Computing tasks require constant transfer of data between memory and processing units. IBM says this process slows down computing and limits the energy efficiency that can be achieved.

Using analog computing for artificial intelligence may provide a more efficient way to achieve the same results as artificial intelligence running on digital computers. IBM defines simulated in-memory computing, or simulated artificial intelligence, as a technology that borrows key features of how neural networks in biological brains operate. Researchers say that in the brains of humans and many other animals, the strength of synapses, called weights, determines the communication between neurons.

In simulated artificial intelligence systems, these synaptic weights are stored in-situ in the conductance values ​​of nanoscale resistive memory devices such as phase change memory (PCM), IBM said. They are then used in deep neural networks to perform cumulative multiplication operations.

IBM said this technology can reduce the need to constantly send data between memory and processors.

In a paper published in Nature Electronics, IBM Research introduced a mixed-signal analog artificial intelligence chip that can run various deep neural network (DNN) inferences Task. According to IBM, this is the first analog chip that performs computer vision AI tasks as well as digital chips in tests, and is more energy efficient than the latter.

The chip is manufactured at IBM's Albany Nanotechnology Center. It consists of 64 analog memory computing cores (or chips), each containing a 256 x 256 crossbar array of synaptic cells. IBM said a time-based analog-to-digital converter is integrated into each chip to convert between analog and digital data. Each chip also integrates lightweight digital processing units that IBM says can perform nonlinear neuron activation functions and scaling operations.

IBM stated that each chip can perform calculations related to a layer of DNN model. The authors of the paper said: "Using this chip, we conducted the most comprehensive study on the computational accuracy of analog memory computing and achieved 92.81% accuracy on the CIFAR-10 image data set."

The above is the detailed content of IBM uses analog computing for artificial intelligence to reshape AI computing. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the types of return values ​​of c language function? Summary of types of return values ​​of c language function? What are the types of return values ​​of c language function? Summary of types of return values ​​of c language function? Apr 03, 2025 pm 11:18 PM

The return value types of C language function include int, float, double, char, void and pointer types. int is used to return integers, float and double are used to return floats, and char returns characters. void means that the function does not return any value. The pointer type returns the memory address, be careful to avoid memory leakage.结构体或联合体可返回多个相关数据。

Concept of c language function Concept of c language function Apr 03, 2025 pm 10:09 PM

C language functions are reusable code blocks. They receive input, perform operations, and return results, which modularly improves reusability and reduces complexity. The internal mechanism of the function includes parameter passing, function execution, and return values. The entire process involves optimization such as function inline. A good function is written following the principle of single responsibility, small number of parameters, naming specifications, and error handling. Pointers combined with functions can achieve more powerful functions, such as modifying external variable values. Function pointers pass functions as parameters or store addresses, and are used to implement dynamic calls to functions. Understanding function features and techniques is the key to writing efficient, maintainable, and easy to understand C programs.

How to calculate c-subscript 3 subscript 5 c-subscript 3 subscript 5 algorithm tutorial How to calculate c-subscript 3 subscript 5 c-subscript 3 subscript 5 algorithm tutorial Apr 03, 2025 pm 10:33 PM

The calculation of C35 is essentially combinatorial mathematics, representing the number of combinations selected from 3 of 5 elements. The calculation formula is C53 = 5! / (3! * 2!), which can be directly calculated by loops to improve efficiency and avoid overflow. In addition, understanding the nature of combinations and mastering efficient calculation methods is crucial to solving many problems in the fields of probability statistics, cryptography, algorithm design, etc.

distinct function usage distance function c usage tutorial distinct function usage distance function c usage tutorial Apr 03, 2025 pm 10:27 PM

std::unique removes adjacent duplicate elements in the container and moves them to the end, returning an iterator pointing to the first duplicate element. std::distance calculates the distance between two iterators, that is, the number of elements they point to. These two functions are useful for optimizing code and improving efficiency, but there are also some pitfalls to be paid attention to, such as: std::unique only deals with adjacent duplicate elements. std::distance is less efficient when dealing with non-random access iterators. By mastering these features and best practices, you can fully utilize the power of these two functions.

What are the differences and connections between c and c#? What are the differences and connections between c and c#? Apr 03, 2025 pm 10:36 PM

Although C and C# have similarities, they are completely different: C is a process-oriented, manual memory management, and platform-dependent language used for system programming; C# is an object-oriented, garbage collection, and platform-independent language used for desktop, web application and game development.

What does the c language function return pointer output? What does the c language function return pointer output? Apr 03, 2025 pm 11:36 PM

The C language function returns a pointer to output a memory address. The pointing content depends on the operation inside the function, which may point to local variables (be careful, memory has been released after the function ends), dynamically allocated memory (must be allocated with malloc and free), or global variables.

What are the pointer parameters in the parentheses of the C language function? What are the pointer parameters in the parentheses of the C language function? Apr 03, 2025 pm 11:48 PM

The pointer parameters of C language function directly operate the memory area passed by the caller, including pointers to integers, strings, or structures. When using pointer parameters, you need to be careful to modify the memory pointed to by the pointer to avoid errors or memory problems. For double pointers to strings, modifying the pointer itself will lead to pointing to new strings, and memory management needs to be paid attention to. When handling pointer parameters to structures or arrays, you need to carefully check the pointer type and boundaries to avoid out-of-bounds access.

What are the formats of function definition in C language? What are the formats of function definition in C language? Apr 03, 2025 pm 11:51 PM

The key elements of C function definition include: return type (defining the value returned by the function), function name (following the naming specification and determining the scope), parameter list (defining the parameter type, quantity and order accepted by the function) and function body (implementing the logic of the function). It is crucial to clarify the meaning and subtle relationship of these elements, and can help developers avoid "pits" and write more efficient and elegant code.

See all articles