Data processing method and apparatus therefor
By converting floating-point data to integer data for accumulation, the problem of uncertainty in multi-core accumulation results in large model calculations is solved, thereby improving the determinism and accuracy of the calculation results.
Patent Information
- Authority / Receiving Office
- WO · WO
- Patent Type
- Applications
- Current Assignee / Owner
- HUAWEI TECH CO LTD
- Filing Date
- 2025-07-03
- Publication Date
- 2026-05-21
AI Technical Summary
In large-scale model calculations, the accumulation of floating-point numbers between multiple cores lacks commutative and associative laws, leading to uncertainty in the calculation results and affecting the determinism and accuracy of the calculation.
Floating-point data is converted to integer data for accumulation to ensure the determinism of the calculation result, and then converted back to floating-point data through inverse conversion to maintain accuracy.
Integer accumulation ensures the determinism of the calculation result and improves the accuracy of the accumulation, avoiding inconsistencies caused by changes in the calculation order.
Smart Images

Figure CN2025106864_21052026_PF_FP_ABST
Abstract
Description
A data processing method and apparatus
[0001] This application claims priority to Chinese Patent Application No. 202411295344.X, filed on September 13, 2024, entitled “A Data Processing Method and Apparatus”, the entire contents of which are incorporated herein by reference. Technical Field
[0002] This application relates to the field of artificial intelligence, and more particularly to a data processing method and apparatus thereof. Background Technology
[0003] Large models, as one of the most important research directions in the field of artificial intelligence, have accelerated the technological advancement of neural networks in both academia and industry. They are a crucial step in realizing artificial intelligence applications, especially deep learning applications. Large models can help us extract valuable information from complex models and solve a wide variety of problems, such as image recognition, speech recognition, and natural language processing.
[0004] The training and inference of large models involve a large number of matrix and vector operators. Matrix operators are generally handled by dedicated matrix computation units, while vector operators are handled by dedicated vector computation units. Vector operators are diverse and are the source of the nonlinearity of large models, as well as a major part of large models.
[0005] Deterministic computation means that the same operator must be run multiple times, and the result must be consistent each time. When the operator involves floating-point accumulation between multiple cores, the determinism of the result cannot be guaranteed because floating-point accumulation does not have an associative property.
[0006] For example, in the single-precision floating-point (fp32) calculation format, (2^23 + 0.5) + 0.5 = 2^23 + 0.5 = 2^23. However, also in the single-precision floating-point (fp32) calculation format, 2^23 + (0.5 + 0.5) = 2^23 + 1, thus different calculation orders will lead to different calculation results.
[0007] In large-scale model calculations, data is often distributed across different cores for computation, ultimately requiring the accumulation of data from all these cores. This can result in data from all cores being accumulated onto a shared memory block. Due to hardware variability, the order in which each core accumulates data is not controllable, leading to variations in the accumulation order across different computational processes and consequently, uncertainty in the final accumulation result. Summary of the Invention
[0008] In a first aspect, this application provides a data processing method, the method comprising: acquiring a plurality of first data, wherein different first data are data accumulation results obtained by different processing cores, and the first data are floating-point numbers; converting the plurality of first data into integers through a first conversion method to obtain a plurality of second data; accumulating the plurality of second data to obtain a first calculation result; and converting the first calculation result into floating-point numbers through a second conversion method to obtain a second calculation result, wherein the first conversion method is the inverse conversion of the second conversion method.
[0009] The root cause of deterministic computation problems lies in the accumulation of floating-point data across multiple cores. Floating-point accumulation lacks the general commutative and associative laws; changing the accumulation order alters the result. In contrast, integer accumulation is deterministic. Regardless of the order of integer accumulation, the same result will always be given. Therefore, in this embodiment, when accumulating floating-point data from multiple processing cores, to ensure determinism, the floating-point data is first converted to integer data, the integer data is accumulated, and the accumulated result is converted back to floating-point, thus guaranteeing the determinism of the accumulation.
[0010] Furthermore, when the bit width of the converted integer is the same as that of the floating-point number, the precision of integer accumulation is higher than that of floating-point accumulation.
[0011] In one possible implementation, the different first data are the data accumulation results obtained by different processing kernels for the same index number.
[0012] In one possible implementation, acquiring multiple first data includes: acquiring multiple first data from dedicated memory (GM);
[0013] The process of converting the plurality of first data into integers using a first conversion method to obtain a plurality of second data includes:
[0014] The vector processing unit converts the plurality of first data into integers using a first conversion method to obtain a plurality of second data;
[0015] The step of accumulating the plurality of second data to obtain a first calculation result includes:
[0016] The plurality of second data are accumulated in the dedicated memory to obtain a first calculation result;
[0017] The step of converting the first calculation result into a floating-point number to obtain the second calculation result through a second conversion method includes:
[0018] The vector processing unit converts the first calculation result into a floating-point number using a second conversion method to obtain the second calculation result.
[0019] In one possible implementation, the first conversion method is configured such that the integer obtained by the conversion does not exceed the maximum representation range of the current data type.
[0020] In one possible implementation, each of the first data points can be divided by the first data point and multiplied by the second value, and the result can be rounded down to the nearest integer, where the second value is a power of 2. This is equivalent to converting a floating-point number to an integer using the concept of linear quantization.
[0021] In one possible implementation, converting the first calculation result into a floating-point number to obtain the second calculation result through a second conversion method includes: multiplying the first calculation result by the first data and dividing it by the second value.
[0022] In one possible implementation, the first data is the product of the number of the plurality of first data and the absolute value of the largest data among the plurality of first data.
[0023] By using the maximum value of each element at each index and the number of elements, the scale for converting floating-point numbers to integers is calculated, ensuring optimal efficiency in converting floating-point numbers to integers without the risk of overflow. Furthermore, each index can be processed in parallel across multiple cores to retrieve the maximum value and calculate the number of elements, avoiding deterministic issues at this step.
[0024] Secondly, this application provides a data processing apparatus, the apparatus comprising:
[0025] The acquisition module is used to acquire multiple first data, where different first data are the cumulative results of data obtained by different processing cores, and the first data are floating-point numbers;
[0026] A conversion module is used to convert the plurality of first data into integers using a first conversion method to obtain a plurality of second data.
[0027] An accumulation module is used to accumulate the plurality of second data to obtain a first calculation result;
[0028] The conversion module is further configured to convert the first calculation result into a floating-point type through a second conversion method to obtain a second calculation result, wherein the first conversion method is the inverse conversion of the second conversion method.
[0029] In one possible implementation, the different first data are the data accumulation results obtained by different processing kernels for the same index number.
[0030] In one possible implementation, the acquisition module is specifically used to acquire multiple first data from dedicated memory (GM); the conversion module belongs to the vector processing unit, and the accumulation module belongs to the dedicated memory.
[0031] In one possible implementation, the first conversion method is configured such that the integer obtained by the conversion does not exceed the maximum representation range of the current data type.
[0032] In one possible implementation, the conversion module is specifically used for:
[0033] Divide each of the first data points by the first data point and multiply by the second value, and then round the result to the nearest integer. The second value is a preset power of 2.
[0034] In one possible implementation, the conversion module is specifically used for:
[0035] Multiply the first calculation result by the first data, and divide it by the second value.
[0036] In one possible implementation, the first data is the product of the number of the plurality of first data and the absolute value of the largest data among the plurality of first data.
[0037] Thirdly, embodiments of this application provide a data processing apparatus, which may include a memory, a processor, and a bus system, wherein the memory is used to store a program, and the processor is used to execute the program in the memory to perform the methods described in the first aspect above and any of its optional methods.
[0038] Fourthly, embodiments of this application provide a computer-readable storage medium storing a computer program that, when run on a computer, causes the computer to perform the methods described in the first aspect and any of its optional methods.
[0039] Fifthly, embodiments of this application provide a computer program that, when run on a computer, causes the computer to perform the methods described in the first aspect and any of its optional methods.
[0040] Sixthly, this application provides a chip system including a processor for supporting an execution data processing device in implementing the functions involved in the foregoing aspects, such as transmitting or processing data involved in the foregoing methods; or, information. In one possible design, the chip system further includes a memory for storing program instructions and data necessary for the execution device or training device. This chip system may be composed of chips or may include chips and other discrete devices. Attached Figure Description
[0041] Figure 1A is a schematic diagram of a structural framework for artificial intelligence.
[0042] Figures 1B and 1C are schematic diagrams of the application system framework of this application;
[0043] Figure 1D is a schematic diagram of an optional hardware structure for the terminal;
[0044] Figure 2 is a schematic diagram of a server structure;
[0045] Figure 3 is a schematic diagram of a system architecture according to this application;
[0046] Figure 4 is a schematic diagram of a system architecture according to this application;
[0047] Figure 5 is a flowchart illustrating a data processing method provided in an embodiment of this application;
[0048] Figures 6A, 6B, and 6C are schematic diagrams of the system architecture;
[0049] Figure 7 is a schematic diagram of a data processing method provided in an embodiment of this application;
[0050] Figure 8 is a schematic diagram of a data processing method provided in an embodiment of this application;
[0051] Figures 9A to 9D illustrate a data processing procedure provided in an embodiment of this application.
[0052] Figure 10 is a schematic diagram of a data processing device provided in an embodiment of this application;
[0053] Figure 11 is a schematic diagram of an execution device provided in an embodiment of this application;
[0054] Figure 12 is a schematic diagram of a training device provided in an embodiment of this application;
[0055] Figure 13 is a schematic diagram of a chip structure provided in an embodiment of this application. Detailed Implementation
[0056] The embodiments of this application are described below with reference to the accompanying drawings. The terminology used in the implementation section of this application is for explaining specific embodiments only and is not intended to limit the scope of this application.
[0057] The embodiments of this application will now be described with reference to the accompanying drawings. Those skilled in the art will recognize that, with technological advancements and the emergence of new scenarios, the technical solutions provided in the embodiments of this application are equally applicable to similar technical problems.
[0058] The terms "first," "second," etc., used in the specification, claims, and accompanying drawings of this application are used to distinguish similar objects and are not necessarily used to describe a specific order or sequence. It should be understood that such terms are interchangeable where appropriate; this is merely a way of distinguishing objects with the same attributes in the embodiments of this application. Furthermore, the terms "comprising" and "having," and any variations thereof, are intended to cover non-exclusive inclusion, so that a process, method, system, product, or apparatus that comprises a series of elements is not necessarily limited to those elements, but may include other elements not explicitly listed or inherent to those processes, methods, products, or apparatuses.
[0059] The terms “substantially,” “about,” and similar terms used herein are used as approximations, not as terms of degree, and are intended to take into account the inherent biases of measurements or calculations known to those skilled in the art. Furthermore, the term “may” used in describing embodiments of this application means “one or more possible embodiments.” The terms “use,” “using,” and “used” used herein are to be considered synonymous with the terms “utilize,” “utilizing,” and “utilized,” respectively. Additionally, the term “exemplary” is intended to refer to an instance or illustration.
[0060] First, the overall workflow of an artificial intelligence system is described, as shown in Figure 1A. Figure 1A is a structural diagram of the main framework of artificial intelligence. The framework is then elaborated from two dimensions: the "intelligent information chain" (horizontal axis) and the "IT value chain" (vertical axis). The "intelligent information chain" reflects a series of processes from data acquisition to processing. For example, it could be the general process of intelligent information perception, intelligent information representation and formation, intelligent reasoning, intelligent decision-making, and intelligent execution and output. In this process, data undergoes a condensation process of "data—information—knowledge—wisdom." The "IT value chain" reflects the value that artificial intelligence brings to the information technology industry, from the underlying infrastructure of human intelligence and information (provided and processed by technology) to the industrial ecosystem of the system.
[0061] (1) Infrastructure
[0062] Infrastructure provides computing power to support artificial intelligence systems, enabling communication with the external world and providing support through a basic platform. This communication occurs through sensors; computing power is provided by intelligent chips (hardware acceleration chips such as CPUs, NPUs, GPUs, ASICs, and FPGAs); and the basic platform includes distributed computing frameworks and related platform guarantees and support, which may include cloud storage and computing, interconnected networks, etc. For example, sensors communicate with the outside world to acquire data, and this data is provided to intelligent chips in the distributed computing system provided by the basic platform for computation.
[0063] (2) Data
[0064] The data at the next layer of infrastructure is used to represent the data sources in the field of artificial intelligence. The data involves graphics, images, voice, text, and IoT data from traditional devices, including business data from existing systems and sensor data such as force, displacement, liquid level, temperature, and humidity.
[0065] (3) Data processing
[0066] Data processing typically includes methods such as data training, machine learning, deep learning, search, reasoning, and decision-making.
[0067] Among them, machine learning and deep learning can perform intelligent information modeling, extraction, preprocessing, and training on data, including symbolization and formalization.
[0068] Reasoning refers to the process in which, in a computer or intelligent system, the machine thinks and solves problems by simulating human intelligent reasoning, based on reasoning control strategies and using formalized information. Typical functions include search and matching.
[0069] Decision-making refers to the process of making decisions based on intelligent information after reasoning, and it typically provides functions such as classification, sorting, and prediction.
[0070] (4) General ability
[0071] After the data processing mentioned above, the results of the data processing can be used to form some general capabilities, such as algorithms or a general system, for example, translation, text analysis, computer vision processing, speech recognition, image recognition, etc.
[0072] (5) Smart Products and Industry Applications
[0073] Intelligent products and industry applications refer to products and applications of artificial intelligence systems in various fields. They are the encapsulation of overall artificial intelligence solutions, productizing intelligent information decision-making and realizing practical applications. Their application areas mainly include: intelligent terminals, intelligent transportation, intelligent healthcare, autonomous driving, smart cities, etc.
[0074] This application can be applied to the field of natural language processing in the field of artificial intelligence. The following will introduce several application scenarios that have been implemented in products, taking natural language processing as an example.
[0075] First, we will introduce the application scenarios of this application. This application can be used, but is not limited to, applications with generative artificial intelligence (AIGC) functionality (hereinafter referred to as synthetic applications) or cloud services provided by cloud-side servers, etc., which will be introduced separately below:
[0076] I. Synthesis Applications
[0077] The product form of this application embodiment can be a synthetic application. Synthetic applications can run on terminal devices or cloud-based servers.
[0078] In one possible implementation, a synthesis application can perform data generation tasks based on input data (e.g., images, text, audio, video, etc.), wherein the synthesis application can perform data generation tasks in response to the input data (e.g., images, text, audio, video, etc.) to obtain generated data.
[0079] For example, the task of generating the above data can be, but is not limited to:
[0080] Text generation task: It can generate various types of text content, including news reports, blog posts, product descriptions, social media posts, etc. It can generate logical and coherent text based on given themes and requirements.
[0081] Image generation task: This task can generate images, including illustrations, artworks, design drafts, etc. It can generate image content related to given descriptions or keywords.
[0082] Audio generation task: This task can generate speech content, including text readings and responses from voice assistants. It can simulate human speech characteristics and intonation, making the generated speech sound more natural.
[0083] Content summarization and conclusion tasks: It can read large amounts of text content and generate summaries or conclusions. It can extract key information from the text and present it to the user in a concise manner.
[0084] Language translation task: This function performs language translation, converting text from one language to another. It can handle multiple language pairs and provide accurate translation results.
[0085] Automated replies and customer service: This can be used to automatically answer user questions and provide customer service. It can understand the user's intent and provide accurate answers or suggestions.
[0086] In one possible implementation, a user can open a synthesis application installed on a terminal device and input data (such as images, text, audio, video, etc.). The synthesis application can generate data from the input data using the method provided in the embodiments of this application and present the generated data to the user (the presentation method may include, but is not limited to, displaying, saving, uploading to the cloud, etc.).
[0087] In one possible implementation, a user can open a synthesis application installed on a terminal device and input data. The synthesis application can then send the input data to a cloud-based server. The cloud-based server uses the method provided in this application to generate data from the input data and sends the generated data back to the terminal device. The terminal device can then present the generated data to the user (the presentation method may include, but is not limited to, displaying, saving, or uploading to the cloud).
[0088] The following sections will describe the synthetic application in this application from the perspectives of functional architecture and product architecture that implements the functions.
[0089] Referring to Figure 1B, which is a schematic diagram of the functional architecture of the synthetic application in an embodiment of this application:
[0090] In one possible implementation, as shown in FIG1B, the synthetic application 102 may receive input parameters 101 (e.g., containing input data) and generate generated data 103. The synthetic application 102 may execute on at least one computer system (for example) and includes computer code that, when executed by one or more computers, causes the computers to execute a natural language model trained by the methods provided in the embodiments of this application.
[0091] Referring to Figure 1C, which is a schematic diagram of the entity architecture for running a synthetic application in an embodiment of this application:
[0092] Referring to Figure 1C, which illustrates a system architecture, the system may include a terminal 100 and a server 200. The server 200 may include one or more servers (Figure 1C illustrates this using one server as an example), and the server 200 may provide synthesis function services to one or more terminals.
[0093] The terminal 100 may have a synthesis application installed or a webpage related to the synthesis function open. The application and webpage can provide an interface. The terminal 100 can receive relevant parameters input by the user on the synthesis function interface and send the parameters to the server 200. The server 200 can obtain the processing result based on the received parameters and return the processing result to the terminal 100.
[0094] It should be understood that in some optional implementations, the terminal 100 can also complete the action of obtaining the processing result based on the received parameters on its own, without the need for the server to cooperate. This application embodiment is not limited to this.
[0095] The product form of terminal 100 in Figure 1C will be described next;
[0096] The terminal 100 in this application embodiment can be a mobile phone, tablet computer, wearable device, vehicle device, augmented reality (AR) / virtual reality (VR) device, laptop computer, ultra-mobile personal computer (UMPC), netbook, personal digital assistant (PDA), etc., and this application embodiment does not impose any restrictions on it.
[0097] Figure 1D shows a schematic diagram of an optional hardware structure for terminal 100.
[0098] Referring to Figure 1D, terminal 100 may include components such as a radio frequency unit 110, a memory 120, an input unit 130, a display unit 140, a camera 150 (optional), an audio circuit 160 (optional), a speaker 161 (optional), a microphone 162 (optional), a processor 170, an external interface 180, and a power supply 190. Those skilled in the art will understand that Figure 1D is merely an example of a terminal or multi-functional device and does not constitute a limitation on the terminal or multi-functional device; it may include more or fewer components than illustrated, or combine certain components, or use different components.
[0099] The input unit 130 can be used to receive input numerical or character information, and to generate key signal inputs related to user settings and function control of the portable multi-functional device. Specifically, the input unit 130 may include a touchscreen 131 (optional) and / or other input devices 132. The touchscreen 131 can collect touch operations performed by the user on or near it (such as operations performed by the user using fingers, knuckles, styluses, or any suitable object on or near the touchscreen), and drive the corresponding connection devices according to a pre-set program. The touchscreen can detect the user's touch actions, convert the touch actions into touch signals and send them to the processor 170, and can receive and execute commands sent by the processor 170; the touch signal includes at least touch point coordinate information. The touchscreen 131 can provide an input interface and an output interface between the terminal 100 and the user. In addition, various types of touchscreens, such as resistive, capacitive, infrared, and surface acoustic wave, can be used. In addition to the touchscreen 131, the input unit 130 may also include other input devices 132. Specifically, other input devices 132 may include, but are not limited to, one or more of the following: physical keyboard, function keys (such as volume control buttons, power buttons, etc.), trackball, mouse, joystick, etc.
[0100] Among them, the input device 132 can receive input data, etc.
[0101] The display unit 140 can be used to display information input by the user or information provided to the user, various menus of the terminal 100, interactive interfaces, file display, and / or playback of any multimedia file. In this embodiment, the display unit 140 can be used to display the interface of a synthesis application, generated data, etc.
[0102] The memory 120 can be used to store instructions and data. The memory 120 may primarily include an instruction storage area and a data storage area. The data storage area can store various types of data, such as multimedia files and text. The instruction storage area can store software units such as operating systems, applications, and instructions required for at least one function, or subsets or extended sets thereof. It may also include non-volatile random access memory. It provides the processor 170 with hardware, software, and data resources for managing the computing device, supporting control software and applications. It is also used for storing multimedia files, as well as storing running programs and applications.
[0103] The processor 170 is the control center of the terminal 100. It connects various parts of the terminal 100 via various interfaces and lines. By running or executing instructions stored in the memory 120 and calling data stored in the memory 120, it performs various functions and processes data of the terminal 100, thereby controlling the terminal device as a whole. Optionally, the processor 170 may include one or more processing units; preferably, the processor 170 may integrate an application processor and a modem processor, wherein the application processor mainly handles the operating system, user interface, and applications, and the modem processor mainly handles wireless communication. It is understood that the modem processor may not be integrated into the processor 170. In some embodiments, the processor and memory can be implemented on a single chip; in some embodiments, they can also be implemented separately on independent chips. The processor 170 can also be used to generate corresponding operation control signals, send them to the corresponding components of the computing processing device, read and process data in the software, especially read and process data and programs in the memory 120, so that the various functional modules therein perform corresponding functions, thereby controlling the corresponding components to act according to the instructions.
[0104] The memory 120 can be used to store software code related to the data processing method, and the processor 170 can execute the steps of the chip's data processing method, and can also schedule other units (such as the above-mentioned input unit 130 and display unit 140) to achieve the corresponding functions.
[0105] The radio frequency unit 110 (optional) can be used for receiving and transmitting signals during information transmission or calls. For example, it can receive downlink information from the base station and process it for the processor 170; additionally, it can transmit uplink data to the base station. Typically, the RF circuit includes, but is not limited to, an antenna, at least one amplifier, a transceiver, a coupler, a low-noise amplifier (LNA), a duplexer, etc. Furthermore, the radio frequency unit 110 can also communicate wirelessly with network devices and other devices. This wireless communication can use any communication standard or protocol, including but not limited to Global System for Mobile communication (GSM), General Packet Radio Service (GPRS), Code Division Multiple Access (CDMA), Wideband Code Division Multiple Access (WCDMA), Long Term Evolution (LTE), email, Short Messaging Service (SMS), etc.
[0106] In this embodiment of the application, the radio frequency unit 110 can send input data to the server 200 and receive generated data sent by the server 200.
[0107] It should be understood that the radio frequency unit 110 is optional and can be replaced with other communication interfaces, such as a network port.
[0108] The terminal 100 also includes a power supply 190 (such as a battery) that supplies power to various components. Preferably, the power supply can be logically connected to the processor 170 through a power management system, thereby enabling functions such as charging, discharging, and power consumption management through the power management system.
[0109] Terminal 100 also includes an external interface 180, which can be a standard Micro USB interface or a multi-pin connector, which can be used to connect terminal 100 to other devices for communication or to connect a charger to charge terminal 100.
[0110] Although not shown, terminal 100 may also include a flash, a wireless fidelity (WiFi) module, a Bluetooth module, and sensors with various functions, which will not be described in detail here. Some or all of the methods described below can be applied to terminal 100 as shown in Figure 1D.
[0111] The product form of server 200 in Figure 1C is described below;
[0112] Figure 2 provides a schematic diagram of the structure of a server 200. As shown in Figure 2, the server 200 includes a bus 201, a processor 202, a communication interface 203, and a memory 204. The processor 202, the memory 204, and the communication interface 203 communicate with each other via the bus 201.
[0113] Bus 201 can be a Peripheral Component Interconnect (PCI) bus or an Extended Industry Standard Architecture (EISA) bus, etc. Buses can be categorized as address buses, data buses, control buses, etc. For ease of representation, only one thick line is used in Figure 2, but this does not indicate that there is only one bus or one type of bus.
[0114] The processor 202 can be any one or more of the following processors: central processing unit (CPU), graphics processing unit (GPU), microprocessor (MP), or digital signal processor (DSP).
[0115] Memory 204 may include volatile memory, such as random access memory (RAM). Memory 204 may also include non-volatile memory, such as read-only memory (ROM), flash memory, hard disk drive (HDD), or solid state drive (SSD).
[0116] The memory 204 can be used to store software code related to the data processing method, and the processor 202 can execute the steps of the chip's data processing method, and can also schedule other units to achieve corresponding functions.
[0117] It should be understood that the aforementioned terminal 100 and server 200 can be centralized or distributed devices. The processors (e.g., processor 170 and processor 202) in the aforementioned terminal 100 and server 200 can be hardware circuits (such as application-specific integrated circuits (ASICs), field-programmable gate arrays (FPGAs), general-purpose processors, digital signal processors (DSPs), microprocessors or microcontrollers, etc.) or combinations of these hardware circuits. For example, the processor can be a hardware system with instruction execution capabilities, such as a CPU or DSP, or a hardware system without instruction execution capabilities, such as an ASIC or FPGA, or a combination of the aforementioned hardware systems without instruction execution capabilities and hardware systems with instruction execution capabilities.
[0118] It should be understood that the steps related to the model inference process in the embodiments of this application involve AI-related operations. When performing AI operations, the instruction execution architecture of the terminal device and the server is not limited to the processor-memory architecture described above. The system architecture provided in the embodiments of this application will be described in detail below with reference to Figure 5.
[0119] Figure 5 is a schematic diagram of the system architecture provided in an embodiment of this application. As shown in Figure 5, the system architecture 500 includes an execution device 510, a training device 520, a database 530, a client device 540, a data storage system 550, and a data acquisition device 560.
[0120] The execution device 510 includes a calculation module 511, an I / O interface 512, a preprocessing module 513, and a preprocessing module 514. The calculation module 511 may include a target model / rule 501, while the preprocessing modules 513 and 514 are optional.
[0121] The execution device 510 can be a terminal device or a server that runs the aforementioned synthetic application.
[0122] The data acquisition device 560 is used to collect training samples. Training samples can be program files (including program code and program input data), etc. After collecting the training samples, the data acquisition device 560 stores these training samples in the database 530.
[0123] The training device 520 can maintain training samples in the database 530 to obtain the target model / rule 501 from the neural network to be trained.
[0124] It should be noted that in practical applications, the training samples maintained in database 530 may not all come from the data acquisition device 560; they may also be received from other devices. Furthermore, it should be noted that training device 520 may not necessarily train the target model / rule 501 entirely based on the training samples maintained in database 530; it may also obtain training samples from the cloud or other sources for model training. The above description should not be construed as limiting the embodiments of this application.
[0125] The target model / rule 501 trained by the training device 520 can be applied to different systems or devices, such as the execution device 510 shown in Figure 5. The execution device 510 can be a terminal, such as a mobile terminal, tablet computer, laptop computer, augmented reality (AR) / virtual reality (VR) device, vehicle terminal, etc., or it can be a server, etc.
[0126] Specifically, the training device 520 can transfer the trained model to the execution device 510.
[0127] In Figure 5, the execution device 510 is configured with an input / output (I / O) interface 512 for data interaction with external devices. Users can input data to the I / O interface 512 through the client device 540 (e.g., input data in the embodiment of this application).
[0128] Preprocessing modules 513 and 514 are used to preprocess the input data received from the I / O interface 512. It should be understood that preprocessing modules 513 and 514 may be absent, or only one preprocessing module may be used. When preprocessing modules 513 and 514 are absent, the calculation module 511 can be used directly to process the input data.
[0129] During the preprocessing of input data by the execution device 510, or during the calculation module 511 of the execution device 510 performing calculations and other related processes, the execution device 510 can call data, code, etc. in the data storage system 550 for corresponding processing, or store the data, instructions, etc. obtained from the corresponding processing into the data storage system 550.
[0130] Finally, the I / O interface 512 provides the processing results (such as generated data) to the client device 540, thereby providing them to the user.
[0131] In the scenario shown in Figure 5, the user can manually provide input data, which can be done through the interface provided by I / O interface 512. Alternatively, the client device 540 can automatically send input data to I / O interface 512. If user authorization is required for the client device 540 to automatically send input data, the user can set the corresponding permissions in the client device 540. The user can view the output results of the execution device 510 on the client device 540, which can be presented in various forms such as display, sound, or animation. The client device 540 can also act as a data acquisition terminal, collecting the input data and output results of the input I / O interface 512 as shown in the figure, and storing them as new sample data in database 530. Alternatively, data can be collected directly from the I / O interface 512 without going through the client device 540, using the input data and output results of the input I / O interface 512 as shown in the figure, and storing them as new sample data in database 530.
[0132] It is worth noting that Figure 5 is merely a schematic diagram of a system architecture provided in an embodiment of this application. The positional relationships between the devices, components, modules, etc., shown in the figure do not constitute any limitation. For example, in Figure 5, the data storage system 550 is an external memory relative to the execution device 510. In other cases, the data storage system 550 can also be placed in the execution device 510. It should be understood that the aforementioned execution device 510 can be deployed in the client device 540.
[0133] From the inference side of the model:
[0134] In this embodiment, the computing module 511 of the execution device 510 can obtain the code stored in the data storage system 550 to implement the steps related to the model reasoning process in this embodiment.
[0135] In this embodiment of the application, the computing module 511 of the execution device 510 may include hardware circuits (such as application-specific integrated circuits (ASICs), field-programmable gate arrays (FPGAs), general-purpose processors, digital signal processors (DSPs), microprocessors or microcontrollers, etc.) or combinations of these hardware circuits. For example, the training device 520 may be a hardware system with instruction execution capabilities, such as a CPU or DSP, or a hardware system without instruction execution capabilities, such as an ASIC or FPGA, or a combination of the aforementioned hardware systems without instruction execution capabilities and hardware systems with instruction execution capabilities.
[0136] Specifically, the computing module 511 of the execution device 510 can be a hardware system with the function of executing instructions. The steps related to the model inference process provided in this application embodiment can be software code stored in the memory. The computing module 511 of the execution device 510 can obtain the software code from the memory and execute the obtained software code to implement the steps related to the model inference process provided in this application embodiment.
[0137] It should be understood that the computing module 511 of the execution device 510 can be a combination of a hardware system without the function of executing instructions and a hardware system with the function of executing instructions. Some steps related to the model reasoning process provided in the embodiments of this application can also be implemented by the hardware system in the computing module 511 of the execution device 510 without the function of executing instructions, which is not limited here.
[0138] From the training side of the model:
[0139] In this embodiment, the training device 520 can obtain the code stored in the memory (not shown in Figure 5, which can be integrated into the training device 520 or deployed separately from the training device 520) to implement the steps related to model training in this embodiment.
[0140] In this embodiment of the application, the training device 520 may include hardware circuits (such as application-specific integrated circuits (ASICs), field-programmable gate arrays (FPGAs), general-purpose processors, digital signal processors (DSPs), microprocessors or microcontrollers, etc.) or combinations of these hardware circuits. For example, the training device 520 may be a hardware system with instruction execution capabilities, such as a CPU or DSP, or a hardware system without instruction execution capabilities, such as an ASIC or FPGA, or a combination of the aforementioned hardware systems without instruction execution capabilities and hardware systems with instruction execution capabilities.
[0141] It should be understood that the training device 520 can be a combination of a hardware system without the function of executing instructions and a hardware system with the function of executing instructions. Some steps related to the training of the neutralization model provided in the embodiments of this application can also be implemented by the hardware system in the training device 520 without the function of executing instructions, which is not limited here.
[0142] II. Cloud services providing synthesis functionality provided by the server:
[0143] In one possible implementation, the server can provide composition services to the client side through an application programming interface (API).
[0144] In this process, the terminal device can send relevant parameters (such as input data) to the server through the API provided by the cloud. The server can obtain the processing result (such as generated data) based on the received parameters and return the processing result to the terminal.
[0145] The description of the terminal and server can be found in the above embodiments, and will not be repeated here.
[0146] Figure 6A illustrates the process of using a synthetic function cloud service provided by a cloud platform.
[0147] 1. Activate and purchase content moderation services.
[0148] 2. Users can download the software development kit (SDK) corresponding to the content moderation service. Cloud platforms usually provide multiple development versions of the SDK for users to choose from according to their development environment needs, such as JAVA version SDK, Python version SDK, PHP version SDK, Android version SDK, etc.
[0149] 3. After downloading the corresponding version of the SDK to their local machine according to their needs, users can import the SDK project into their local development environment, configure and debug it in the local development environment, and develop other functions in the local development environment, thus forming an application that integrates the capabilities of composite functional classes.
[0150] 4. When a composition application is used, it can trigger an API call for the composition function when the composition function is required. When the application triggers the composition function, it sends an API request to the running instance of the composition function service in the cloud environment. The API request carries the input data, which is processed by the running instance in the cloud environment to obtain the processing result (such as generated data).
[0151] 5. The cloud environment returns the processing result to the application, thus completing a synthesis function service call.
[0152] In addition to applications and cloud services, the implementation of this application can also be in a large model inference acceleration library or a large model application SDK.
[0153] To better understand the solutions of the embodiments of this application, the following uses text generation as an example and combines Figures 3 and 4 to briefly introduce the possible application scenarios of the embodiments of this application.
[0154] Figure 3 illustrates a natural language processing (NLP) system, which includes user devices and data processing devices. The user devices include smart terminals such as mobile phones, personal computers, or information processing centers. The user devices are the initiators of natural language data processing, acting as the initiators of requests such as language question answering or queries; typically, users initiate requests through their user devices.
[0155] The aforementioned data processing equipment can be cloud servers, network servers, application servers, management servers, or other devices or servers with data processing capabilities. The data processing equipment receives queries / voice / text from smart terminals via an interactive interface, then performs language data processing through a storage device and a data processing processor, employing methods such as machine learning, deep learning, search, reasoning, and decision-making. The processing results are then fed back to the user device. The storage device in the data processing equipment can be a general term, including local storage and a database storing historical data. The database can be located on the data processing equipment or on other network servers.
[0156] In the natural language processing system shown in Figure 3, the user device can receive instructions from the user. For example, the user device can receive a piece of text input by the user and then send a request to the data processing device, so that the data processing device can perform natural language processing applications (such as natural language generation, text classification, text reasoning, named entity recognition, translation, etc.) on the piece of text obtained by the user device, thereby obtaining the processing results of the corresponding natural language processing applications on the piece of text (such as prediction results, classification results, reasoning results, named entity recognition results, translation results, etc.).
[0157] In this embodiment of the application, the user equipment can receive instructions from the user. For example, the user equipment can receive a piece of text input by the user (e.g., input data) and then send a request to the data processing device, so that the data processing device performs a natural language processing application (e.g., text synthesis) on the piece of text obtained by the user equipment, thereby obtaining the processing result (e.g., generated data) of the corresponding natural language processing application on the piece of text.
[0158] The text is shown in Figure 3. The data processing device can process the above-mentioned text data using the method provided in the embodiments of this application.
[0159] Figure 4 illustrates another natural language processing system. In Figure 4, the user equipment directly acts as a data processing device. This user equipment can directly receive input from the user and process it directly by the hardware of the user equipment itself. The specific process is similar to that in Figure 3, and can be referred to the description above, so it will not be repeated here.
[0160] Figure 4 is a schematic diagram of the natural language processing related devices provided in the embodiments of this application.
[0161] The processors in Figures 3 and 4 can perform data training / machine learning / deep learning using neural network models or other models, and use the models finally trained or learned from the data (such as the natural language models in the embodiments of this application) to perform natural language processing applications (such as program synthesis, etc.) on text data (such as the input data text described in the embodiments of this application) to obtain the corresponding processing results.
[0162] Since the embodiments of this application involve a large number of neural network applications, for ease of understanding, the relevant terms and concepts such as neural networks involved in the embodiments of this application will be introduced below.
[0163] (1) Neural Network
[0164] A neural network can be composed of neural units, which can be defined as a computational unit that takes xs (i.e., input data) and an intercept of 1 as input. The output of this computational unit can be:
[0165] Where s = 1, 2, ..., n, where n is a natural number greater than 1, Ws is the weight of xs, and b is the bias of the neural unit. f is the activation function of the neural unit, used to introduce nonlinear characteristics into the neural network to convert the input signal in the neural unit into an output signal. The output signal of this activation function can be used as the input of the next convolutional layer, and the activation function can be the sigmoid function. A neural network is a network formed by connecting multiple of the above-mentioned individual neural units together, that is, the output of one neural unit can be the input of another neural unit. The input of each neural unit can be connected to the local receptive field of the previous layer to extract the features of the local receptive field, which can be a region composed of several neural units.
[0166] (2) Transformer layer
[0167] The neural network includes an embedding layer and at least one transformer layer. The at least one transformer layer can be N transformer layers (N being an integer greater than 0). Each transformer layer includes sequentially adjacent attention layers, add and normalize layers, feed-forward layers, and add and normalize layers. In the embedding layer, the current input is embedded to obtain multiple embedding vectors. In the attention layer, P input vectors are obtained from the layer above the first transformer layer. Using any first input vector among the P input vectors as the center, intermediate vectors corresponding to the first input vector are obtained based on the correlation between each input vector within a preset attention window and the first input vector. This process determines P intermediate vectors corresponding to the P input vectors. In the pooling layer, the P intermediate vectors are merged into Q output vectors, where the multiple output vectors obtained from the last transformer layer are used as feature representations of the current input.
[0168] (3) Attention mechanism
[0169] Attention mechanisms mimic the internal processes of biological observation—aligning internal experience with external senses to increase the precision of observation in specific areas. They enable the rapid sifting of high-value information from a large volume of data using limited attentional resources. Attention mechanisms can quickly extract important features from sparse data and are therefore widely used in natural language processing tasks, particularly machine translation. Self-attention mechanisms, an improvement on attention mechanisms, reduce reliance on external information and are better at capturing the internal correlations of data or features. The core idea of attention mechanisms can be rewritten as follows:
[0170] In this formula, Lx = ||Source|| represents the length of the Source. The meaning is that the elements in the Source are imagined as a series of data pairs. Given a Query element in the Target, the similarity or relevance between the Query and each Key is calculated to obtain the weight coefficient of the Value corresponding to each Key. Then, the Values are weighted and summed to obtain the final Attention value. Therefore, the Attention mechanism essentially performs a weighted sum of the Values of the elements in the Source, while the Query and Key are used to calculate the weight coefficients of their corresponding Values. Conceptually, Attention can be understood as selectively filtering a small amount of important information from a large amount of information and focusing on this important information, ignoring most of the unimportant information. The focusing process is reflected in the calculation of the weight coefficients; the larger the weight, the more focused it is on its corresponding Value. That is, the weight represents the importance of the information, and the Value is the corresponding information. Self-attention can be understood as intra attention. The attention mechanism occurs between the elements of the Target (Query) and all elements of the Source. Self-attention refers to the attention mechanism that occurs between elements within the Source or between elements within the Target. It can also be understood as the attention calculation mechanism in the special case where Target = Source. The specific calculation process is the same, only the calculation object changes.
[0171] (4) Natural Language Processing (NLP)
[0172] Natural language is human language, and Natural Language Processing (NLP) is the processing of human language. NLP is a systematic process of analyzing, understanding, and extracting information from text data in an intelligent and efficient manner. By using NLP and its components, we can manage very large amounts of text data, perform numerous automated tasks, and solve a wide variety of problems, such as automatic summarization, machine translation (MT), named entity recognition (NER), relation extraction (RE), information extraction (IE), sentiment analysis, speech recognition, question answering systems, and topic segmentation, among others.
[0173] (5) Pre-trained language model
[0174] A pre-trained language model is a natural language sequence encoder that encodes each word in a natural language sequence into a vector representation for prediction tasks. Its training consists of two phases. In the pre-training phase, the model is trained on a large-scale unsupervised text environment to learn word representations. In the fine-tuning phase, the model is initialized using the parameters learned in the pre-training phase and then trained on downstream tasks such as text classification and sequence labeling with fewer steps, successfully transferring the semantic information obtained in pre-training to these downstream tasks.
[0175] (6) Reasoning / Deployment: The forward computation process of a neural network.
[0176] (7) Large Language Model (LLM): A large language model is a natural language processing model trained on large-scale data, typically with billions or tens of billions of parameters. These models learn to capture the general features of language by learning from a large amount of text data during the pre-training stage, and can then be fine-tuned on downstream tasks to adapt to the needs of specific tasks.
[0177] (8) Matrix processing unit (cube unit): The unit in the NPU used to calculate matrix multiplication. It can only calculate matrix multiplication of data of the same type, such as integer matrix multiplication by integer matrix, or floating-point matrix multiplication by floating-point matrix. In general NPU chips, the cube unit has strong computing power.
[0178] (9) Vector processing unit: The unit used by the NPU to perform vector operations. It can perform a variety of vector operations, but its computing power is weaker than that of the Cube unit.
[0179] (10) Global memory (GM): Memory used to store data. It has a large space. The data involved in the calculation of Cube and Vector units need to be read from GM, but the bandwidth (reading speed) of reading data from GM is small.
[0180] (11) L2: L2 cache (secondary cache) is used to store data. It has a smaller space than GM and a higher read and write speed than GM. At the beginning of the calculation process, the data is located in GM and needs to enter L2 first and then enter Cube / UB; while the data coming out of Cube / UB can directly enter L2.
[0181] (12) L1: Level 1 cache, i.e., the cache in the Cube unit. The space is relatively smaller than L2, and the read and write speed is relatively higher than L2.
[0182] (13) L0A / L0B / L0C: Level 0 cache, which is a cache in the Cube cell specifically used to store computational data. It has the smallest space and the highest read and write speed. Among them, L0A / B / C are specifically used to store the left matrix / right matrix and the computation result matrix.
[0183] (14) Determinism: The same operator is run multiple times, and the result obtained each time is fixed. When the operator involves floating-point accumulation between multiple cores, the determination of the result cannot be guaranteed because floating-point accumulation does not have an associative law. Therefore, deterministic computation is challenged for the operator.
[0184] (15) Multi-core accumulation: Accumulate data from multiple cores. Generally, the data from multiple vector cores will be accumulated on the same GM memory block.
[0185] Large models, as one of the most important research directions in the field of artificial intelligence, have accelerated the technological advancement of neural networks in both academia and industry. They are a crucial step in realizing artificial intelligence applications, especially deep learning applications. Large models can help us extract valuable information from complex models and solve a wide variety of problems, such as image recognition, speech recognition, and natural language processing.
[0186] The training and inference of large models involve a large number of matrix and vector operators. Matrix operators are generally handled by dedicated matrix computation units, while vector operators are handled by dedicated vector computation units. Vector operators are diverse and are the source of the nonlinearity of large models, as well as a major part of large models.
[0187] Deterministic computation means that the same operator must be run multiple times, and the result must be consistent each time. When the operator involves floating-point accumulation between multiple cores, the determinism of the result cannot be guaranteed because floating-point accumulation does not have an associative property.
[0188] For example, in the single-precision floating-point (fp32) calculation format, (2^23 + 0.5) + 0.5 = 2^23 + 0.5 = 2^23. However, also in the single-precision floating-point (fp32) calculation format, 2^23 + (0.5 + 0.5) = 2^23 + 1, thus different calculation orders will lead to different calculation results.
[0189] In large-scale model calculations, data is often distributed across different cores for computation, ultimately requiring the accumulation of data from all these cores. This can result in data from all cores being accumulated onto a shared memory block. Due to hardware variability, the order in which each core accumulates data is not controllable, leading to variations in the accumulation order across different computational processes and consequently, uncertainty in the final accumulation result.
[0190] The accumulation of floating-point numbers between multiple cores is frequently encountered in vector operators such as reduce and scatter.
[0191] Next, taking the Scatter operator as an example, referring to Figure 6B, the input data consists of two vectors (value, index). The requirement is to sum the corresponding values according to the same index to obtain the result shown in Figure 6C.
[0192] When partitioning data across cores, the partitioning is not strictly based on the index; instead, the data is distributed across cores according to its storage order. Therefore, without intervention, data with the same index will inevitably be distributed across different cores, leading to accumulation between different cores and thus introducing deterministic computation problems.
[0193] To address the aforementioned problems, embodiments of this application provide a data processing method. The data processing method of this application embodiment will be described in detail below with reference to the accompanying drawings.
[0194] Referring to Figure 7, which is a flowchart of a data processing method provided in an embodiment of this application, the data processing method provided in this application may include steps 701 to 704, which will be described in detail below.
[0195] 701. Obtain multiple first data, where different first data are the data accumulation results obtained by different processing cores, and the first data are floating-point numbers.
[0196] In one possible implementation, the different first data are the data accumulation results obtained by different processing kernels for the same index number.
[0197] In one possible implementation, the input data consists of two vectors (value, index), where each kernel can be responsible for accumulating the data at the same index to obtain a first data. For example, one first data is the result obtained by processing kernel 1 accumulating the data at index 1, and the other first data is the result obtained by processing kernel 2 accumulating the data at index 1.
[0198] Next, the multiple first data obtained from multiple processing cores need to be accumulated.
[0199] In one possible implementation, multiple sets of first data can be stored in dedicated memory, and thus, multiple sets of first data can be retrieved from dedicated memory (GM).
[0200] Each of the first data items can be a floating-point number, for example, the data type of the first data item can be fp32, etc.
[0201] 702. By using the first conversion method, the plurality of first data are converted into integers to obtain a plurality of second data;
[0202] In one possible implementation, the vector processing unit converts the plurality of first data into integers using a first conversion method to obtain a plurality of second data.
[0203] This application proposes a novel method to guarantee deterministic computation: using "integer accumulation." The root cause of deterministic computation problems lies in the fact that floating-point data accumulation across multiple cores lacks the general commutative and associative laws; changing the accumulation order of floating-point data will alter the calculation result. Integers, however, are different. Integer accumulation is deterministic. Regardless of the modification of the integer accumulation order, it will always produce the same result.
[0204] Therefore, in this embodiment of the application, when accumulating floating-point data obtained from multiple processing cores, in order to ensure the determinism of the calculation result, the floating-point data is first converted into integer data, the integer data is accumulated, and the accumulation result is converted back into floating-point data, thereby ensuring the determinism of the accumulation.
[0205] Furthermore, when the bit width of the converted integer is the same as that of the floating-point number, the precision of integer accumulation is higher than that of floating-point accumulation.
[0206] For example, the precision of accumulating int32 integers is higher than that of accumulating fp32 (24 bits of effective precision). If we construct data with very similar ranges, the embodiments of this application will achieve higher computational precision than the approach based on floating-point accumulation.
[0207] In one possible implementation, the first conversion method is configured such that the integer obtained by the conversion does not exceed the maximum representation range of the current data type.
[0208] Next, we will explain how to convert a floating-point number to an integer:
[0209] In one possible implementation, each of the first data points can be divided by the first data point and multiplied by the second value, and the result can be rounded down to the nearest integer, where the second value is a power of 2. This is equivalent to converting a floating-point number to an integer using the concept of linear quantization.
[0210] In one possible implementation, the first data is the product of the number of the plurality of first data and the absolute value of the largest data among the plurality of first data.
[0211] By using the maximum value of each element at each index and the number of elements, the scale for converting floating-point numbers to integers is calculated, ensuring optimal efficiency in converting floating-point numbers to integers without the risk of overflow. Furthermore, each index can be processed in parallel across multiple cores to retrieve the maximum value and calculate the number of elements, avoiding deterministic issues at this step.
[0212] 703. The plurality of second data are summed to obtain a first calculation result;
[0213] In one possible implementation, the plurality of second data can be accumulated in the dedicated memory to obtain a first calculation result;
[0214] For example, the maximum absolute value M of elements with the same index in multiple first data sets can be obtained. i and the number of data items N at the same index. i , and R i =M i *N iFor example, the upper bound R for each index can be obtained from the input data shown in Figure 8. i =M i N i (As shown in Figure 9A). Then, each data point can be transformed... And through the calculation formula The cumulative result for each index is obtained (as shown in Figure 9B).
[0215] 704. The first calculation result is converted into a floating-point type by a second conversion method to obtain a second calculation result, wherein the first conversion method is the inverse conversion of the second conversion method.
[0216] The so-called inverse transformation can be understood as a value that can be obtained as the same or almost the same value after conversion and inverse transformation.
[0217] In one possible implementation, the first calculation result can be converted into a floating-point type by the vector processing unit through a second conversion method to obtain the second calculation result.
[0218] For example, the first calculation result can be multiplied by the first data and divided by the second value.
[0219] Returning integer data as floating-point data involves using the sum of integers obtained in step two and the upper bound of each index obtained in step one (as shown in Figure 9C), calculated using the formula Res. i =I i R i / 2 31 The final calculation result is obtained (as shown in Figure 9D).
[0220] In this embodiment, during the calculation process, whether it's obtaining the maximum value of all elements in the first step or the integer accumulation in the second step, the order of the data is completely irrelevant. However, in existing technologies, i.e., index-based sorting schemes, the calculation result can be related to the order of the input data.
[0221] Referring to Figure 10, which is a schematic diagram of the structure of a data processing apparatus provided in an embodiment of this application, as shown in Figure 10, the data processing apparatus 1000 provided in this embodiment includes:
[0222] The acquisition module 1001 is used to acquire multiple first data, where different first data are the data accumulation results obtained by different processing cores, and the first data are floating-point numbers.
[0223] The conversion module 1002 is used to convert the plurality of first data into integers through a first conversion method to obtain a plurality of second data;
[0224] The accumulation module 1003 is used to accumulate the plurality of second data to obtain a first calculation result;
[0225] The conversion module 1002 is further configured to convert the first calculation result into a floating-point type through a second conversion method to obtain a second calculation result, wherein the first conversion method is the inverse conversion of the second conversion method.
[0226] In one possible implementation, the different first data are the data accumulation results obtained by different processing kernels for the same index number.
[0227] In one possible implementation, the acquisition module 1001 is specifically used to acquire multiple first data from dedicated memory (GM); the conversion module 1002 belongs to the vector processing unit, and the accumulation module 1003 belongs to the dedicated memory.
[0228] In one possible implementation, the first conversion method is configured such that the integer obtained by the conversion does not exceed the maximum representation range of the current data type.
[0229] In one possible implementation, the conversion module 1002 is specifically used for:
[0230] Divide each of the first data points by the first data point and multiply by the second value, and then round the result to the nearest integer. The second value is a preset power of 2.
[0231] In one possible implementation, the conversion module 1002 is specifically used for:
[0232] Multiply the first calculation result by the first data, and divide it by the second value.
[0233] In one possible implementation, the first data is the product of the number of the plurality of first data and the absolute value of the largest data among the plurality of first data.
[0234] The following describes a terminal device provided in an embodiment of this application. Please refer to Figure 11, which is a structural schematic diagram of a terminal device provided in an embodiment of this application. The terminal device 1100 can specifically be a virtual reality (VR) device, a mobile phone, a tablet, a laptop computer, a smart wearable device, etc., and is not limited here. Specifically, the terminal device 1100 includes: a receiver 1101, a transmitter 1102, a processor 1103, and a memory 1104 (the number of processors 1103 in the terminal device 1100 can be one or more; Figure 11 shows one processor as an example). The processor 1103 may include an application processor 11031 and a communication processor 11032. In some embodiments of this application, the receiver 1101, transmitter 1102, processor 1103, and memory 1104 can be connected via a bus or other means.
[0235] Memory 1104 may include read-only memory and random access memory, and provides instructions and data to processor 1103. A portion of memory 1104 may also include non-volatile random access memory (NVRAM). Memory 1104 stores processor and operation instructions, executable modules, or data structures, or subsets thereof, or extended sets thereof, wherein the operation instructions may include various operation instructions for implementing various operations.
[0236] Processor 1103 controls the operation of the execution device. In specific applications, the various components of the execution device are coupled together through a bus system, which may include not only the data bus, but also power buses, control buses, and status signal buses. However, for clarity, all buses are referred to as the bus system in the diagram.
[0237] The methods disclosed in the embodiments of this application can be applied to or implemented by the processor 1103. The processor 1103 can be an integrated circuit chip with signal processing capabilities. During implementation, each step of the above method can be completed by the integrated logic circuitry in the hardware of the processor 1103 or by instructions in software form. The processor 1103 can be a general-purpose processor, a digital signal processor (DSP), a microprocessor, or a microcontroller, and may further include an application-specific integrated circuit (ASIC), a field-programmable gate array (FPGA), or other programmable logic devices, discrete gate or transistor logic devices, or discrete hardware components. The processor 1103 can implement or execute the methods, steps, and logic block diagrams disclosed in the embodiments of this application. The general-purpose processor can be a microprocessor or any conventional processor. The steps of the methods disclosed in the embodiments of this application can be directly embodied in the execution of a hardware decoding processor, or executed by a combination of hardware and software modules in the decoding processor. The software module can reside in a mature storage medium in the field, such as random access memory, flash memory, read-only memory, programmable read-only memory, electrically erasable programmable memory, or registers. This storage medium is located in memory 1104. Processor 1103 reads the information in memory 1104 and, in conjunction with its hardware, completes the steps involved in the model training or model inference process described above.
[0238] Receiver 1101 can be used to receive input digital or character information, and to generate signal inputs related to the settings and function control of the execution device. Transmitter 1102 can be used to output digital or character information through the first interface; transmitter 1102 can also be used to send instructions to the disk group through the first interface to modify the data in the disk group; transmitter 1102 may also include a display device such as a display screen.
[0239] This application embodiment also provides a server. Referring to Figure 12, Figure 12 is a schematic diagram of a server structure provided in this application embodiment. The server 1200 can vary significantly due to different configurations or performance. It may include one or more central processing units (CPUs) 1212 (e.g., one or more processors) and a memory 1232, and one or more storage media 1230 (e.g., one or more mass storage devices) for storing application programs 1242 or data 1244. The memory 1232 and storage media 1230 can be temporary or persistent storage. The program stored in the storage media 1230 may include one or more modules (not shown in the figure), each module may include a series of instruction operations on the server. Furthermore, the CPU 1212 may be configured to communicate with the storage media 1230 and execute the series of instruction operations in the storage media 1230 on the server 1200.
[0240] Server 1200 may also include one or more power supplies 1226, one or more wired or wireless network interfaces 1250, one or more input / output interfaces 1258; or, one or more operating systems 1241, such as Windows Server™, Mac OS X™, Unix™, Linux™, FreeBSD™, etc.
[0241] In this embodiment, the central processing unit 1212 is used to perform actions related to model training or model inference in the above embodiments.
[0242] This application also provides a computer program product that, when run on a computer, causes the computer to perform steps as performed by the aforementioned execution device, or causes the computer to perform steps as performed by the aforementioned training device.
[0243] This application also provides a computer-readable storage medium storing a program for signal processing, which, when run on a computer, causes the computer to perform steps as performed by the aforementioned execution device, or causes the computer to perform steps as performed by the aforementioned training device.
[0244] The execution device, training device, or terminal device provided in this application embodiment can specifically be a chip. The chip includes a processing unit and a communication unit. The processing unit can be, for example, a processor, and the communication unit can be, for example, an input / output interface, pins, or circuits. The processing unit can execute computer execution instructions stored in the storage unit to cause the chip within the execution device to execute the data processing method described in the above embodiments, or to cause the chip within the training device to execute the data processing method described in the above embodiments. Optionally, the storage unit can be a storage unit within the chip, such as a register or cache. Alternatively, the storage unit can be a storage unit located outside the chip within the wireless access device, such as a read-only memory (ROM) or other types of static storage devices capable of storing static information and instructions, such as random access memory (RAM).
[0245] Specifically, please refer to Figure 13, which is a schematic diagram of a chip structure provided in an embodiment of this application. The chip can be represented as a neural network processor (NPU) 1300. The NPU 1300 is mounted as a coprocessor on the host CPU, and tasks are assigned by the host CPU. The core part of the NPU is the arithmetic circuit 1303, which is controlled by the controller 1304 to extract matrix data from the memory and perform multiplication operations.
[0246] In some implementations, the arithmetic circuit 1303 internally includes multiple processing engines (PEs). In some implementations, the arithmetic circuit 1303 is a two-dimensional pulsating array. The arithmetic circuit 1303 can also be a one-dimensional pulsating array or other electronic circuits capable of performing mathematical operations such as multiplication and addition. In some implementations, the arithmetic circuit 1303 is a general-purpose matrix processor.
[0247] For example, suppose we have an input matrix A, a weight matrix B, and an output matrix C. The arithmetic circuit retrieves the corresponding data of matrix B from the weight memory 1302 and caches it in each PE of the arithmetic circuit. The arithmetic circuit retrieves the data of matrix A from the input memory 1301 and performs matrix operations with matrix B. The partial result or the final result of the obtained matrix is stored in the accumulator 1308.
[0248] Unified memory 1306 is used to store input and output data. Weight data is directly transferred to weight memory 1302 via Direct Memory Access Controller (DMAC) 1305. Input data is also transferred to unified memory 1306 via DMAC.
[0249] BIU stands for Bus Interface Unit, which is used for interaction between the AXI bus and the DMAC and the Instruction Fetch Buffer (IFB) 1309.
[0250] The Bus Interface Unit (BIU) 1310 is used by the instruction fetch memory 1309 to fetch instructions from external memory, and also by the memory access controller 1305 to fetch the original data of the input matrix A or the weight matrix B from external memory.
[0251] The DMAC is mainly used to move input data from external memory DDR to unified memory 1306, or to weight data to weight memory 1302, or to input data to input memory 1301.
[0252] The vector computation unit 1307 includes multiple processing units that further process the output of the computation circuit 1303 when needed, such as vector multiplication, vector addition, exponential operations, logarithmic operations, size comparisons, etc. It is mainly used for computation in non-convolutional / fully connected layers of neural networks, such as Batch Normalization, pixel-level summation, and upsampling of feature planes.
[0253] In some implementations, the vector computation unit 1307 can store the processed output vector in the unified memory 1306. For example, the vector computation unit 1307 can apply a linear function, or a nonlinear function, to the output of the computation circuit 1303, such as performing linear interpolation on the feature planes extracted by the convolutional layer, or, for example, accumulating a vector of values to generate activation values. In some implementations, the vector computation unit 1307 generates normalized values, pixel-level summed values, or both. In some implementations, the processed output vector can be used as an activation input to the computation circuit 1303, for example, for use in subsequent layers of the neural network.
[0254] The instruction fetch buffer 1309 connected to the controller 1304 is used to store the instructions used by the controller 1304;
[0255] Unified memory 1306, input memory 1301, weighted memory 1302, and instruction fetch memory 1309 are all on-chip memories. External memory is proprietary to this NPU hardware architecture.
[0256] The processor mentioned above can be a general-purpose central processing unit, a microprocessor, an ASIC, or one or more integrated circuits used to control the execution of the above program.
[0257] It should also be noted that the device embodiments described above are merely illustrative. The units described as separate components may or may not be physically separate, and the components shown as units may or may not be physical units; that is, they may be located in one place or distributed across multiple network units. Some or all of the modules can be selected to achieve the purpose of this embodiment according to actual needs. In addition, in the device embodiment drawings provided in this application, the connection relationship between modules indicates that they have a communication connection, which can be implemented as one or more communication buses or signal lines.
[0258] Through the above description of the embodiments, those skilled in the art can clearly understand that this application can be implemented by means of software plus necessary general-purpose hardware, or it can be implemented by special-purpose hardware including application-specific integrated circuits, special-purpose CPUs, special-purpose memory, special-purpose components, etc. Generally, any function performed by a computer program can be easily implemented by corresponding hardware, and the specific hardware structure used to implement the same function can also be diverse, such as analog circuits, digital circuits, or special-purpose circuits. However, for this application, software program implementation is more often the preferred implementation method. Based on this understanding, the technical solution of this application, in essence, or the part that contributes to the prior art, can be embodied in the form of a software product. This computer software product is stored in a readable storage medium, such as a computer floppy disk, USB flash drive, mobile hard disk, ROM, RAM, magnetic disk, or optical disk, etc., and includes several instructions to cause a computer device (which may be a personal computer, training equipment, or network device, etc.) to execute the methods described in the various embodiments of this application.
[0259] In the above embodiments, implementation can be achieved, in whole or in part, through software, hardware, firmware, or any combination thereof. When implemented in software, it can be implemented, in whole or in part, as a computer program product.
[0260] The computer program product includes one or more computer instructions. When the computer program instructions are loaded and executed on a computer, all or part of the processes or functions described in the embodiments of this application are generated. The computer may be a general-purpose computer, a special-purpose computer, a computer network, or other programmable device. The computer instructions may be stored in a computer-readable storage medium or transmitted from one computer-readable storage medium to another. For example, the computer instructions may be transmitted from one website, computer, training device, or data center to another website, computer, training device, or data center via wired (e.g., coaxial cable, fiber optic, digital subscriber line (DSL)) or wireless (e.g., infrared, wireless, microwave, etc.) means. The computer-readable storage medium may be any available medium that a computer can store or a data storage device such as a training device or data center that integrates one or more available media. The available media may be magnetic media (e.g., floppy disks, hard disks, magnetic tapes), optical media (e.g., DVDs), or semiconductor media (e.g., solid-state drives (SSDs)).
Claims
1. A data processing method, characterized by, The method includes: Multiple first data points are obtained, and the different first data points are the data accumulation results obtained by different processing cores. The first data points are floating-point numbers. The plurality of first data are converted into integers using a first conversion method to obtain a plurality of second data. The multiple second data are summed to obtain the first calculation result; The first calculation result is converted into a floating-point type through a second conversion method to obtain a second calculation result, wherein the first conversion method is the inverse conversion of the second conversion method.
2. The method of claim 1, wherein, The acquisition of multiple first data includes: acquiring multiple first data from dedicated memory (GM); The process of converting the plurality of first data into integers using a first conversion method to obtain a plurality of second data includes: The vector processing unit converts the plurality of first data into integers using a first conversion method to obtain a plurality of second data; The step of accumulating the plurality of second data to obtain a first calculation result includes: The plurality of second data are accumulated in the dedicated memory to obtain a first calculation result; The step of converting the first calculation result into a floating-point number to obtain the second calculation result through a second conversion method includes: The vector processing unit converts the first calculation result into a floating-point number using a second conversion method to obtain the second calculation result.
3. The method according to claim 1 or 2, characterized in that, The step of converting the first calculation result into a floating-point number to obtain the second calculation result through a second conversion method includes: Multiply the first calculation result by the first data, and divide it by the second value.
4. The method of claim 3, wherein, The first data is the product of the quantity of the plurality of first data and the absolute value of the largest data among the plurality of first data.
5. The method according to any one of claims 1 to 4, characterized in that, The different first data are the data accumulation results obtained by different processing kernels for the same index sequence number.
6. The method according to any one of claims 1 to 5, characterized in that, The first conversion method is configured such that the integer obtained by conversion does not exceed the maximum representation range of the current data type.
7. The method according to any one of claims 1 to 6, characterized in that, The process of converting the plurality of first data into integers using a first conversion method to obtain a plurality of second data includes: Divide each of the first data points by the first data point and multiply by the second value, and then round the result to the nearest integer. The second value is a preset power of 2.
8. A data processing apparatus, characterized by, The device includes: The acquisition module is used to acquire multiple first data, where different first data are the cumulative results of data obtained by different processing cores, and the first data are floating-point numbers; A conversion module is used to convert the plurality of first data into integers using a first conversion method to obtain a plurality of second data. An accumulation module is used to accumulate the plurality of second data to obtain a first calculation result; The conversion module is further configured to convert the first calculation result into a floating-point type through a second conversion method to obtain a second calculation result, wherein the first conversion method is the inverse conversion of the second conversion method.
9. The apparatus of claim 8, wherein, The different first data are the data accumulation results obtained by different processing kernels for the same index sequence number.
10. The apparatus of claim 8 or 9, wherein, The acquisition module is specifically used to acquire multiple first data from dedicated memory (GM); the conversion module belongs to the vector processing unit, and the accumulation module belongs to the dedicated memory.
11. The apparatus of any one of claims 8 to 10, wherein, The first conversion method is configured such that the integer obtained by conversion does not exceed the maximum representation range of the current data type.
12. The apparatus of any one of claims 8 to 11, wherein, The conversion module is specifically used for: Divide each of the first data points by the first data point and multiply by the second value, and then round the result to the nearest integer. The second value is a preset power of 2.
13. The apparatus of claim 12, wherein, The conversion module is specifically used for: Multiply the first calculation result by the first data, and divide it by the second value.
14. The apparatus of claim 12 or 13, wherein, The first data is the product of the quantity of the plurality of first data and the absolute value of the largest data among the plurality of first data.
15. A computer storage medium, comprising, The computer storage medium stores one or more instructions that, when executed by one or more computers, cause the one or more computers to perform the operation of the method according to any one of claims 1 to 7.
16. A computer program product, characterised in that, Includes computer-readable instructions that, when executed on a computer device, cause the computer device to perform the method as described in any one of claims 1 to 7.
17. A system, comprising: It includes at least one processor and at least one memory; the processor and the memory are connected via a communication bus and communicate with each other. The at least one memory is used to store code; The at least one processor is used to execute the code to perform the method as described in any one of claims 1 to 7.
18. A chip comprising a processor, characterized in that The processor is used to support the data processing device in implementing the method as described in any one of claims 1 to 7.