EP4049187A1 - Multiples calculs stockés localement de réseau neuronal artificiel - Google Patents

Multiples calculs stockés localement de réseau neuronal artificiel

Info

Publication number
EP4049187A1
EP4049187A1 EP19809613.3A EP19809613A EP4049187A1 EP 4049187 A1 EP4049187 A1 EP 4049187A1 EP 19809613 A EP19809613 A EP 19809613A EP 4049187 A1 EP4049187 A1 EP 4049187A1
Authority
EP
European Patent Office
Prior art keywords
ann
dataset
memory
processing units
input
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
EP19809613.3A
Other languages
German (de)
English (en)
Inventor
Stephane Ladevie
Ludovic Larzul
Sebastien Delerse
Frederic Dumoulin
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Mipsology SAS
Original Assignee
Mipsology SAS
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Mipsology SAS filed Critical Mipsology SAS
Publication of EP4049187A1 publication Critical patent/EP4049187A1/fr
Pending legal-status Critical Current

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N3/00Computing arrangements based on biological models
    • G06N3/02Neural networks
    • G06N3/06Physical realisation, i.e. hardware implementation of neural networks, neurons or parts of neurons
    • G06N3/063Physical realisation, i.e. hardware implementation of neural networks, neurons or parts of neurons using electronic means
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N3/00Computing arrangements based on biological models
    • G06N3/02Neural networks
    • G06N3/04Architecture, e.g. interconnection topology
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06NCOMPUTING ARRANGEMENTS BASED ON SPECIFIC COMPUTATIONAL MODELS
    • G06N3/00Computing arrangements based on biological models
    • G06N3/02Neural networks
    • G06N3/08Learning methods
    • G06N3/082Learning methods modifying the architecture, e.g. adding, deleting or silencing nodes or connections

Definitions

  • the present disclosure relates generally to data processing and, more particularly, to a system and method for performing multiple locally stored artificial neural network (ANN) computations.
  • ANN artificial neural network
  • ANNs Artificial Neural Networks
  • the human brain contains 10-20 billion neurons connected through synapses. Electrical and chemical messages are passed from neurons to neurons based on input information and their resistance to passing information.
  • a neuron can be represented by a node performing a simple operation of addition coupled with a saturation function.
  • a synapse can be represented by a connection between two nodes. Each of the connections can be associated with an operation of multiplication by a constant.
  • the ANNs are particularly useful for solving problems that cannot be easily solved by classical computer programs.
  • ANNs While forms of the ANNs may vary, they all have the same basic elements similar to the human brain.
  • a typical ANN can be organized into layers, and each of the layers may include many neurons sharing similar functionality. The inputs of a layer may come from a previous layer, multiple previous layers, any other layers, or even the layer itself.
  • Major architectures of ANNs include Convolutional Neural Network (CNN), Recurrent Neural Network (RNN), and Long Term Short Memory (LTSM) network, but other architectures of ANN can be developed for specific applications. While some operations have a natural sequence, for example a layer depending on previous layers, most operations can be carried out in parallel within the same layer. The ANNs can then be computed in parallel on many different computing elements similar to neurons of the brain.
  • a single ANN may have hundreds of layers. Each of the layers can involve millions of connections. Thus, a single ANN may potentially require billions of simple operations like multiplications and additions.
  • ANNs can result in a very heavy load for processing units (e.g., CPU), even ones running at high rates.
  • processing units e.g., CPU
  • GPUs graphics processing units
  • GPUs can be used to process large ANNs because GPUs have a much higher throughput capacity of operations in comparison to CPUs. Because this approach solves, at least partially, the throughput limitation problem, GPUs appear to be more efficient in the computations of ANNs than the CPUs.
  • GPUs are not well suited to the computations of ANNs because the GPUs have been specifically designed to compute graphical images.
  • the GPUs may provide a certain level of parallelism in computations.
  • the GPUs are constraining the computations in long pipes implying latency and lack of reactivity.
  • very large GPUs can be used, which may involve excessive power consumption, which is a typical issue of GPUs. Since the GPUs may require more power consumption for the computations of ANNs, the deployment of GPUs can be difficult.
  • CPUs provide a very generic engine that can execute very few sequences of instructions with a minimum effort in terms of programming, but lack the power of computing for ANN.
  • the GPUs are slightly more parallel and require a larger effort of programming than CPUs, which can be hidden behind libraries with some performance costs but are not very suitable for ANNs.
  • FPGAs Field Programmable Gate Arrays
  • the FPGAs can be configured to perform computations in parallel. Therefore, FPGAs can be well suited to compute ANNs.
  • One of the challenges of FPGAs is the programming, which requires a much larger effort than programming CPUs and GPUs. Adaption of FPGAs to perform ANN computations can be more challenging than for CPUs and GPUs.
  • a system for performing multiple locally stored ANN computations may include one or more processing units and a memory coupled to the one or more processing units.
  • the processing units can be configured to receive an ANN dataset associated with an ANN of a plurality of ANNs.
  • the processing units may store the ANN dataset at a base address in the memory.
  • the processing units can receive at least one further ANN dataset associated with at least one further ANN of the plurality of ANNs.
  • the further ANN dataset may differ from the ANN dataset.
  • the processing units may store the further ANN dataset in the memory at a further base address.
  • the processing units may receive an input dataset associated with an address.
  • the processing units may read, based on the received address, the memory to perform an ANN computation.
  • Storing the ANN dataset in the memory can be controlled by a first process and the ANN computation can be controlled by a second process.
  • the first process can be different from the second process. Ending the first process does not cause freeing part of the memory in which the ANN dataset is stored.
  • the processing units may receive a further address corresponding to the further base address.
  • the further base address is different from the base address.
  • the processing units may perform a further ANN computation based on the received further address.
  • the processing units may keep the ANN dataset in the memory until receiving an indication to remove the ANN dataset from the memory or until the processing unit determines that the ANN dataset is no longer required.
  • the processing units are configured to perform an ANN computation using the ANN dataset and a further ANN computation using the at least one further ANN dataset in a sequence based on an order.
  • the order is determined by an order of receiving a first input dataset for the ANN dataset and a second input dataset for the further ANN dataset and while both the ANN dataset and the further ANN dataset are stored in memory.
  • the processing units can be configured to receive priorities associated with the ANN dataset and the at least one further dataset ANN.
  • the processing units can perform an ANN computation using the ANN dataset and a further ANN computation using the further ANN dataset in a sequence based on the priorities.
  • the ANN dataset may include a first layer data associated with a first layer of the ANN and a second layer data associated with a second layer of the ANN.
  • the processing units can be configured to keep the first layer data in the memory until receiving a first indication to remove the first layer data from the memory.
  • the processing units can be configured to keep the second layer data in the memory until receiving a second indication to remove the second layer data from the memory.
  • the first indication can differ from the second indication.
  • the processing units may store a result of the ANN computation in the memory.
  • the processing units may receive the further base address of the further ANN dataset and an instruction to perform a further ANN computation using the result of the ANN computation for the input dataset.
  • the processing units can be configured to receive an input dataset and a base address instead of the base address.
  • the unique identifier can be determined based on the ANN dataset.
  • the ANN dataset may include a description of operations included in the ANN and parameters associated with connections of the ANN.
  • the processing units can be configured to receive an input dataset and a base address.
  • the processing units may determine, based on the base address, a location of the ANN dataset in the memory.
  • the processing units may perform an ANN computation using the ANN dataset and the input dataset.
  • the processing unit may store the result of the ANN computation in the memory.
  • the processing unit may receive an instruction to perform further ANN computation using the further ANN dataset based on the further base address and the result of the ANN computation.
  • the processing units can be configured to receive a unique identifier of the ANN dataset.
  • the processing units may associate the unique identifier with a base address.
  • the processing units may keep the unique identifier in the memory while the ANN dataset is not removed from the memory.
  • the unique identifier can be determined based on the ANN dataset.
  • the ANN dataset may include a description of neurons of the ANN and weights associated with the neurons of the ANN.
  • the processing units can be configured to receive an input dataset and a unique identifier.
  • the processing may determine, based on the unique identifier, the base address of the ANN dataset in the memory, wherein the ANN dataset is associated with the unique identifier.
  • the processing units may perform an ANN computation using the ANN dataset and the input dataset.
  • the processing units can be configured to receive a unique identifier and an instruction to remove the ANN dataset.
  • the processing units can remove, from the memory, the information concerning an association between the unique identifier and the base address and, thereby, remove the ANN dataset from the memory.
  • the processing units can be configured to receive an input dataset for one or more ANNs of the plurality of ANNs.
  • the processing units may store the input dataset in the memory.
  • the processing units may associate an input base address with the input dataset.
  • the input base address can be used to locate the input dataset in the memory.
  • the processing units can keep the input dataset in the memory until receiving an indication to remove the input dataset.
  • the input dataset can be used for an ANN computation of one or more ANNs of the plurality of ANNs.
  • the processing units can receive a base address and the input base address.
  • the processing units may determine, based on the base address, a location of the ANN dataset in the memory.
  • the processing units can determine, based on the input base address, a location of the input dataset in the memory.
  • the processing units may perform an ANN computation using the ANN dataset and the input dataset.
  • the processing units can be configured to store a result of the ANN computation as a further input dataset in the memory.
  • the processing units may assign a further input base address to the further input dataset.
  • the further input base address can be used to locate the further input dataset in the memory.
  • the processing units can be configured to divide an address space of the memory between ANNs of the plurality of ANNs.
  • the processing units and the memory can be integrated into an electronic circuit configured to perform computations of two and more ANNs of the plurality of ANNs.
  • the electronic circuit includes at least one field programmable gate array.
  • a method for performing multiple locally stored ANN computations may include receiving, by one or more processing units, an ANN dataset associated with at least one ANN of a plurality of ANNs.
  • the method may include determining, by the processing units, a base address for the ANN, wherein the base address is to be used to locate the ANN dataset in a memory coupled to the one or more processing units.
  • the method may include storing, by processing units, the ANN dataset in the memory at the determined base address.
  • the method may include keeping, by the processing units, the ANN dataset in the memory until receiving an indication to remove the ANN dataset from the memory.
  • the method may further include receiving, by the processing units, an input dataset and the base address.
  • the method may include determining, by the processing units and based on the base address, a location of the ANN dataset in the memory.
  • the method may include performing, by the processing units, ANN computations using the ANN dataset and input dataset.
  • a system for performing multiple locally stored ANN computations may include one or more processing units and a memory coupled to the one or more processing unit.
  • the processing units may receive one or more ANN datasets and one or more input datasets associated with one or more ANNs of a plurality of ANNs.
  • Each of the ANN datasets may include a description of structure of parameters of at least one ANN of the plurality of ANNs.
  • the processing units may store the ANN datasets and the input datasets in the memory.
  • the processing units may associate one or more base addresses with the ANN datasets, wherein the base addresses are to be used to locate the ANN datasets in the memory.
  • the processing units may associate one or more input base addresses with the input datasets, wherein the input base addresses are to be used to locate the input datasets in the memory.
  • the processing units may receive a computational model.
  • the computational model may include relations between the base addresses and the input base addresses.
  • the processing units may perform, based on the computational model, one or more ANN computations.
  • FIG. 1 is a block diagram showing an example system wherein a method for multiple locally stored ANN computations can be implemented, according to some example embodiments.
  • FIG. 2 shows an ANN, neuron, and transfer function, according to an example embodiment.
  • FIG. 3 is a flow chart showing training and inference of an ANN, according to some example embodiments.
  • FIG. 4 is a block diagram showing an example stack for performing ANN commutations, according to an example embodiment.
  • FIG. 5A is a block diagram showing an example system, wherein a method for performing multiple locally stored ANN computations can be implemented.
  • FIG. 5B is a block diagram showing an example system, wherein a method for performing multiple locally stored ANN computations can be implemented.
  • FIG. 6A is a block diagram showing a memory being used for multiple ANN computations, according to an example embodiment.
  • FIG. 6B is a block diagram showing a memory being used for multiple ANN computations, according to another example embodiment.
  • FIG. 7 is a block diagram showing an example system suitable for performing multiple locally stored ANN computations, according to some embodiments.
  • FIG. 8 is flow diagram showing an example method for performing multiple locally stored ANN computations, according to an example embodiment.
  • FIG. 9 is a block diagram showing an example system suitable for performing multiple locally stored ANN computations, according to some other embodiments.
  • FIG. 10 is a flow chart of an example method for performing multiple locally stored ANN computations, according to some example embodiments.
  • FIG. 11 A is a block diagram showing a memory of an electronic board being used for multiple ANN computations, according to an example embodiment.
  • FIG. 1 IB is a flow chart of example multiple ANN computations.
  • FIG 12A is block diagram showing an electronic board, according to some example embodiments.
  • FIG. 12B is a flow chart of example multiple ANN computations.
  • FIG. 13 is a block diagram showing a method for performing multiple locally stored ANN computations, according to some example embodiments.
  • FIG. 14 shows a computing system that can be used to implement embodiments of the disclosed technology.
  • Embodiments of the present disclosure can be implemented using integrated circuits, for example, CPU, GPU, application-specific integrated circuits (ASICs) or FPGAs.
  • the present technology may be also practiced with programmable logic devices, transistor-based circuits, or various combinations thereof.
  • the methods described herein can be also implemented by hardware modules, software modules, or combinations of both.
  • the methods can also be embodied in computer-readable instructions stored on computer-readable media.
  • module shall be construed to mean a hardware device, software, or a combination of both.
  • a hardware-based module can use one or more microprocessors, FPGAs, ASICs, programmable logic devices, transistor-based circuits, or various combinations thereof.
  • Software-based modules can constitute computer programs, computer program procedures, computer program functions, and the like.
  • a module of a system can be implemented by a computer or server, or by multiple computers or servers interconnected into a network.
  • module may also refer to a subpart of a computer system, a hardware device, an integrated circuit, or a computer program.
  • a system for performing multiple ANN computations may include one or more processing units and a memory coupled with the processing units.
  • the system may be configured to receive, from one or more external applications, one or more ANN datasets and one or more input datasets.
  • An ANN dataset may include a description of a structure of neurons of an ANN, weights of connections between neurons, and other parameters of the ANN.
  • the input dataset may include input data for neurons of the ANN.
  • the system may perform ANN computation only for one of the ANN datasets and one of the input datasets at the same time.
  • the processing units may store the ANN dataset in a memory.
  • the processing units may provide to the external applications an address of the ANN dataset in the memory.
  • the external applications may further send an input dataset and the address to system.
  • the processing units may retrieve, based on the address, the ANN dataset from the memory and perform ANN computation based on the ANN dataset and the input dataset.
  • the processing units may store multiple ANN datasets for multiple ANNs in one or more memories.
  • the external applications may request computation of a specific ANN by specifying a specific address.
  • the processing units may store in the one or more memories multiple input datasets to be used in computations for different ANNs.
  • the ANN datasets and the input datasets can be kept in memory to avoid unnecessary reloading, by the external application, of either the ANN datasets or the input datasets to the memory.
  • the memory may store multiple layer datasets associated with multiple ANNs of a plurality of ANN.
  • the processing units may write, to the memory, a set of layer datasets associated with at least one ANN of the plurality of ANN based on received one or more indications to memorize one or more layer datasets of a set of layers of the ANN.
  • Technical effects of certain embodiments of the present disclosure can include configuring integrated circuits, ASICs, FPGAs, or computer systems to perform computation of multiple ANNs. Further technical effects of some embodiments of the present disclosure can facilitate to effective use of memory of integrated circuits, ASICs, FPGAs, or computer systems during computations of multiple ANNs and so reduce the number of integrated circuits, ASICs, FPGAs, or computer systems required to implement computation of multiple ANNs.
  • FIG. 1 is a block diagram showing an example system 100, wherein a method for performing multiple locally stored ANN computations can be implemented, according to some example embodiments.
  • the system 100 can be part of a computing system, such as a personal computer, a server, a cloud-based computing recourse, and the like.
  • the system 100 may include one or more electronic boards 105 and a chipset 135 including at least one CPU.
  • the chipset 135 can be communicatively connected to the electronic boards 105 via a communication interface.
  • the communication interface may include a Peripheral Component Interconnect Express (PCIE) standard 130.
  • PCIE Peripheral Component Interconnect Express
  • the communication interface may also include an Ethernet connection 131.
  • the electronic board 105 may include an electronic computing chip 115 like an FPGA, an ASIC, a GPU, a system on a chip (SOC) or any electronic component that allows performing mathematical operations related to a neural network, a volatile memory 110, and a non-volatile memory 120.
  • the volatile memory 110 may include a double data rate synchronous dynamic random-access memory (DDR SDRAM), High Bandwidth Memory (HBM), or any other type of memory.
  • the volatile memory 110 may include the host memory.
  • the non-volatile memory 120 may include Electrically Erasable Programmable Read-Only Memory (EEPROM), a solid-state drive (SSD), a flash memory, and so forth.
  • EEPROM Electrically Erasable Programmable Read-Only Memory
  • SSD solid-state drive
  • flash memory and so forth.
  • the electronic computing chip 115 can include blocks.
  • the blocks may include a set of elementary nodes (also referred to as gates) performing basic hardware operations, such as Boolean operations.
  • the blocks may further include registers retaining bit information, one or more memory storage of different sizes, and one or more digital signal processors (DSPs) to perform arithmetic computations (for example, additions and multiplications).
  • DSPs digital signal processors
  • Programming of electronic computing chip 115 may include configuring each of the blocks to have an expected behavior and connecting the blocks by routing information between the blocks or loading a computing program.
  • Programming of electronic computing chip 115 can be carried out using a result from a compiler taking as input high-level language, assembly instructions, scripts, schematic description, gate-level description, hardware languages like Verilog, System Verilog, or Very High Speed Integrated Circuit Hardware Description Language (VHDL), or any combination of thereof.
  • VHDL Very High Speed Integrated Circuit Hardware Description Language
  • the non-volatile memory 120 may be configured to store instructions in a form of bit file 125 to be executed by the electronic computing chip 115.
  • the electronic computing chip 115 can be configured by the instructions to perform one or more floating point operations or bitwise operations including multiplication and addition to calculate a sum of products that can be used in neural network computations.
  • the volatile memory 110 may be configured to store weights W[i] for neurons of one or more ANNs, input values V[i] to be processed for the ANNs, and results of ANNs computation including any intermediate results of computations of layers of the ANNs.
  • FIG. 2 shows ANN 210, neuron 220, and transfer function 230, according to some example embodiments.
  • the ANN 210 may include one or more input layers 240, one or more hidden layers 250, and one or more output layers 260.
  • Each of the input layers 240, hidden layers 250, and output layers 260 may include one or more (artificial) neurons 220. The number of neurons can be different for different layers.
  • Each of neurons 220 may represent a calculation of a mathematical function
  • V[i] are neuron input values
  • W[i] are weights assigned to input values at neuron
  • F(X) is a transfer function.
  • the transfer function 230 F(X) is selected to be zero for X ⁇ 0 and have a limit of zero as X approaches zero.
  • the transfer function F(X) can be in the form of a sigmoid. The result of a calculation of a neuron propagates as an input value of further neurons in the ANN.
  • the further neurons can belong to either the next layer, previous layer, or the same layer.
  • ANN 210 illustrated in FIG. 2 can be referred to as a feedforward neural network
  • embodiments of the present disclosure can be also used in computations of CNNs, recurrent neural networks, long short-term memory networks, and other types of ANNs.
  • FIG. 3 is a flow chart 300 showing training 310 and inference 325 of an ANN, according to some example embodiments.
  • the training 310 (also known as learning) is a process of teaching ANN 305 to output a proper result based on a given set of training data 315.
  • the process of training may include determining weights 320 of neurons of the ANN 305 based on training data 315.
  • the training data 315 may include samples. Each of the samples may be represented as a pair of input values and an expected output.
  • the training data 315 may include hundreds to millions of samples. While the training 310 is required to be performed only once, it may require a significant amount of computations and take a considerable time.
  • the ANNs can be configured to solve different tasks including, for example, image recognition, speech recognition, handwriting recognition, machine translation, social network filtering, video games, medical diagnosis, and so forth.
  • the inference 325 is a process of computation of an ANN.
  • the inference 325 uses the trained ANN weights 320 and new data 330 including new sets of input values. For each new set of input values, the computation of the ANN provides a new output which answers the problem that the ANN is supposed to solve.
  • an ANN can be trained to recognize various animals in images.
  • the ANN can be trained on millions of images of animals. Submitting a new image to the ANN would provide the information for animals in the new image (this process being known as image tagging). While the inference for each image takes less computations than training, a number of inferences can be large because new images can be received from billions of sources.
  • the inference 325 includes multiple computations of sum of products:
  • V[i] are new input values and W[i] are weights associated with neurons of ANN.
  • Some previous approaches for performing inference include inspection of the weights W[i] and replacing some of the weights W[i] with zero values if a value of the weight is relatively small when compared to other weights of the ANN.
  • this process is shown as pruning 335.
  • the pruning 335 generates new weights 340 that then can be used in inference 325 instead of the weights 320. Replacing the weights with zero values may allow decreasing the number of computations of the ANN, since multiplications by zero can be avoided in computations.
  • FIG. 4 is a block diagram showing an example stack 400 for performing ANN computations, according to an example embodiment.
  • the stack 400 may include an application 410, a framework 420, software libraries 430, drivers 440, operating system 450, computer bus 460, and an electronic board 105.
  • the application 410 may request computation of an ANN for an input dataset.
  • Framework 420 may include an application programming interface (API) to organize the ANN computations and generate an ANN dataset in a pre-determined format.
  • the ANN dataset may include description of the structure of neurons of the ANN, weights of the neurons of the ANN, and other parameters of the ANN.
  • API application programming interface
  • Modules of the software libraries 430 can be called from the framework 420.
  • the framework 420 may provide the ANN dataset and the input dataset to the modules of the software libraries 430.
  • the ANN dataset and the input dataset can be further provided, via the drivers 440, the operating system 450, and the computer bus 460, to the electronic board 105.
  • the electronic board 105 can be configured to perform ANN computations based on the ANN dataset and the input dataset.
  • the ANN dataset and the input dataset can be stored in a memory of the electronic board 105 prior to the ANN computations. Typically, after the ANN computations are completed for a specific ANN dataset, the ANN dataset and the input dataset are removed from the memory of the electronic board 105.
  • the ANN dataset needs to be loaded again in the memory of the electronic board 105. It takes time to generate the ANN dataset in a pre-determined format; provide the ANN dataset, via the software libraries 430, the drivers 440, the operating system 450, and the computer bus 460, to the electronic board 105; and write the ANN dataset to the memory of the electronic board 105. Therefore, according to some embodiments of the present disclosure, the ANN dataset can be kept in the memory electronic board after finishing the ANN computations. The ANN dataset can be further used in further ANN computation of the ANN with further input datasets. Additionally, it would be more efficient to use the memory of the electronic board 105 to store ANN datasets corresponding to two or more different ANNs.
  • one or more ANN datasets can be provided to the electronic board 105 from an external memory or from a further computing system via an electronic bus.
  • the ANN datasets can be written to the memory of the electronic board 105.
  • the ANN datasets can be kept in the memory after finishing the ANN computation.
  • FIG. 5A is a block diagram showing example system 510, wherein a method for performing multiple locally stored ANN computations can be implemented.
  • the system 510 may include application 520, application 530, and an electronic board 105.
  • the application 520 may request, via a framework 525, computation of a first ANN on the electronic board 105.
  • the application 530 may request, via a framework 535, computation of a second ANN on the same electronic board 105.
  • a dataset of the first ANN and a dataset of the second ANN can be preloaded in the memory 505 of the electronic board 105.
  • the dataset of the first ANN may include a description of the structure of neurons of the first ANN, weights for connections between neurons of the first ANN, and other parameters of the first ANN.
  • the dataset of the second ANN may include a description of the structure of neurons of the second ANN, weights for connections between neurons of the second ANN, and other parameters of the second ANN.
  • the dataset of the first ANN and the dataset of the second ANN can be stored in the memory 505 of the electronic board 105 when the application 520 and application 530 request the ANN computations for the first time.
  • the electronic board 105 can be configured to receive, from the application 520, an input data for the first ANN, determine location of the datasets of the first ANN in the memory 505, and perform computations based on the input dataset and the dataset of the first ANN.
  • the electronic board 105 can be configured to receive, from the application 530, an input dataset for the second ANN, determine location of the datasets of the second ANN in the memory 505, and perform computations based on the input dataset and the dataset of the second ANN.
  • the electronic board 105 can perform computations for only one of the first ANN or the second ANN at the same time.
  • the dataset of the first network and the dataset of the second network can be stored in memory 505 until the electronic board 105 receives a request to remove the dataset of the first network and the dataset of the second network from the memory.
  • memory 505 may refer to all memory devices located at the electronic board 105.
  • the electronic board 105 may not receive instructions for removal of ANN datasets stored in the memory 505.
  • the computing chip 115 may be programmed to manage the set of ANNs stored in the memory 505.
  • the removal of an ANN from the memory can be performed automatically when no more space is available in the memory to store a new ANN dataset.
  • the removal can be based on a priority assigned to each ANN, the least prioritized ANN being removed first.
  • the removal can be based on the age of an ANN stored in the memory, the oldest being removed first.
  • the removal can be based on the number of uses of an ANN, the least used one recently being removed first. Moreover, removal can be based on a combination of these conditions.
  • FIG. 5B is a block diagram showing example system 550, wherein a method for performing multiple locally stored ANNs computations can be implemented.
  • the environment 550 may include an application 560 and an electronic board 105.
  • the application 560 may request, via a framework 565, computation of a first ANN and computation of a second ANN on the same electronic board 105.
  • a dataset of the first ANN and a dataset of the second ANN can be kept in memory 505 of the electronic board 105 while the application 560 may request computation of the either the first ANN or the second ANN for multiple input datasets.
  • a system for performing multiple locally stored ANN computations can include any combinations of the system 510 and the system 550.
  • FIG. 6A is a block diagram showing a memory 505 being used for multiple ANN computations, according to an example embodiment.
  • the memory 505 is divided in N equal address spaces. Size of each of the address spaces can be 1/N of the size of memory 505 and can be designated to store a dataset of one of ANNs of a plurality of ANNs.
  • Size of each of the address spaces can be 1/N of the size of memory 505 and can be designated to store a dataset of one of ANNs of a plurality of ANNs.
  • dividing the memory into equal spaces may not be efficient because datasets of some ANNs of the plurality of ANNs can be less than 1/N of the memory. Therefore, some portions of the equal spaces may be unused during multiple ANN computations.
  • FIG. 6B is a block diagram showing a memory 505 being used for multiple ANN computations, according to another example embodiment.
  • the memory 505 can be divided in address spaces of different sizes.
  • the sizes of the address spaces can be substantially equal to the sizes required to store the datasets of ANNs of the plurality of ANNs.
  • ANNs can be associated with base addresses @1, @2, @3, and so forth. Each of the base addresses may indicate an address at which a dataset of one of ANNs starts in the memory 505.
  • each of the ANNs stored in the memory 505 can be assigned a unique identifier.
  • the system 100 may include a table 630 of unique identifiers of ANNs 640 stored in the memory and base addresses 650 corresponding to the ANNs.
  • FIG. 7 is a block diagram showing an example system 700 suitable for performing multiple locally stored ANN computations, according to some embodiments.
  • the system 700 may include an application 560, a framework 565, and an electronic board 105.
  • the electronic board 105 may include a memory 505 and a processing unit 710.
  • the framework 565 may include software libraries implementing one or more APIs.
  • the processing unit 710 may include a memory controller 720 and one or more configuration register(s) 730.
  • FIG. 8 is flow diagram showing example method 800 for performing multiple locally stored ANN computations, according to an example embodiment.
  • the method 800 may be implemented by system 700.
  • the method 800 may commence in block 805 with an application calling an API in a framework.
  • the application may provide an ANN dataset and input dataset to the API.
  • the method 800 may include the API calling a neural network API to load the ANN dataset to an electronic board.
  • the method 800 may include the neural network API loading the ANN dataset on the electronic board.
  • the method 800 may include the neural network API keeping an address at which the ANN dataset is stored in the electronic board as a reference for the ANN dataset.
  • the method 800 may include upon receiving the input dataset by the neural network API retrieving the address associated with the ANN dataset.
  • the method 800 may include the neural network API setting the address associated with the ANN dataset as a base address in the electronic board.
  • the electronic board may include one or more configuration register(s) 730 for keeping the base address.
  • the memory controller 720 may use the base address to determine location in the memory the electronic board to read and write ANN dataset.
  • the method 800 may include the electronic board performing ANN computations using the input dataset and the ANN dataset referenced by the base address.
  • the input dataset can be loaded to the electronic board prior to performing the ANN computations. After finishing the ANN computations, the input dataset can be removed from the memory of the electronic board.
  • the ANN dataset can be kept in the memory of the electronic board for performing further ANN computations for further input datasets by repeating operations of method 800 in blocks 825 - 835.
  • the ANN dataset can be kept in the memory of electronic board until the neural network API receives an indication to remove the ANN dataset from the memory of the electronic board.
  • FIG. 9 is a block diagram showing example system 900 suitable for performing multiple locally stored ANN computations, according to some other embodiments.
  • the system 900 may include an application 560, a framework 565, and an electronic board 105.
  • the electronic board 105 may include a memory 505 and a processing unit 710.
  • the framework 565 may include software libraries implementing one or more APIs.
  • the electronic board 105 may include a memory controller 720 and one or more configuration register(s) 730.
  • an ANN can be referenced by a unique identifier, rather than by a base address in the memory of the electronic board.
  • FIG. 10 is a flow chart of an example method 1000 for performing multiple locally stored ANN computations, according to some example embodiments.
  • the method 1000 can be implemented by the system 900 of FIG. 9.
  • the method 1000 may commence, in block 1005, with an application calling an API in a framework.
  • the application may provide an ANN dataset and input dataset to the API.
  • the method 1000 may include the API calling a neural network API to process the ANN dataset and the input dataset.
  • the method 1000 may include the neural network API calculating a unique identifier for the ANN dataset.
  • the ANN dataset can include a description of the structures of neurons of an ANN, weights for connections between the neurons, and other parameters of the ANN.
  • the method 1000 may include determining whether the unique identifier is present on the electronic board. If the unique identifier is present on the electronic board, this may indicate that the ANN dataset has been previously stored in the memory of the electronic board. The method 1000 may further proceed, in block 1025, with enabling the ANN dataset on the electronic board. As shown in FIG. 9, the memory controller 720 of the electronic board 105 may determine, based on the unique identifier, a base address at which the corresponding ANN dataset is stored in the memory 505 of the electronic board. One of the configuration registers 730 can be set to the base address. The memory controller 720 may further read the ANN dataset form the memory 505.
  • the method 1000 may proceed, in block 1030, with the neural network API loading the ANN dataset on the electronic board.
  • the method 1000 may include removing one or more previously loaded ANN datasets from the memory of the electronic board.
  • the method 1000 may include the electronic board performing ANN computations based on the ANN dataset and the input dataset.
  • the neural network API may load the input dataset to the electronic board prior to the ANN computations and remove the input dataset after the ANN computations are finished.
  • the ANN dataset may be kept in the memory of the electronic board for further ANN computations.
  • multiple applications may request, via a framework and APIs, computations for multiple ANNs on the same electronic board.
  • the datasets of the ANNs can be preloaded on the electronic board.
  • Applications may request pausing the computations of an ANN. In this case, the dataset for the ANN may be kept in the memory of the electronic board inactive.
  • a neural network API may reset a base address of the ANN dataset in a configuration register(s) of the electronic board or provide a unique identifier to the memory controller of the electronic board.
  • the memory controller may reset, based on the unique identifier, the base address of the ANN dataset in the configuration register(s) of the electronic board.
  • a neural network API receives requests for computations of two and more ANNs, then the API may process the requests sequentially, by computing one ANN on the electronic board at a time.
  • the order of processing the requests can be based on a "first in first out" queue.
  • the order of processing the requests can be based on priorities associated with the ANNs.
  • each layer of an ANN can be loaded to the electronic board separately.
  • Layers of the ANN can be assigned different base addresses and different unique identifiers.
  • different layers of the ANN can be preloaded and kept in the memory of the electronic board at different addresses.
  • different layers of the ANN can be removed from the memory of the electronic board separately when required.
  • FIG. 11 A is a block diagram showing a memory 505 of an electronic board 105 being used for multiple ANN computations, according to an example embodiment.
  • the memory 505 of the FPGA may also be used to keep both ANN datasets and input datasets for one or more ANNs. Similar to the ANN datasets, the input datasets can be referenced by base addresses or unique identifiers. The same input dataset can be reused in computations with different ANN datasets (for example, a single image can be processed by different ANNs). If the input data dataset is to be processed with multiple ANNs, the input dataset can be loaded to the memory of the electronic board only one time and kept in the memory after being processed by the first ANN. In example of FIG. 11A, the memory 505 is used to keep datasets of ANN #1, ANN #2, and ANN #3 and input datasets Data A and Data B.
  • FIG. 11B is a flow chart 1100 of example multiple ANN computations, according to an example embodiment.
  • the ANN computations can be performed on the electronic board 105 of FIG. 11A.
  • the ANN computations are performed for ANN datasets and input data stored in the memory 505 shown in FIG. 11A.
  • the ANN computations may commence, in block 1105, with loading datasets for ANN #1, ANN #2, and ANN #3 and input dataset Data A in the memory 505.
  • the electronic board 105 may be configured to perform ANN computations using the dataset of ANN #1 and the input dataset Data A.
  • the electronic board 105 may include a memory controller and configuration registers to store a base address of the dataset of ANN#1 and a further configuration register to store a base address of the input dataset Data A.
  • the base address for the dataset of ANN#1 and the base address of the input dataset Data A can be provided to the electronic board to identify which ANN dataset and input dataset stored in the memory 505 is to be used in the ANN computations.
  • a unique identifier of the dataset of ANN #1 and a unique identifier of the input dataset Data A can be provided to the electronic board.
  • the electronic board can be further configured to determine, based on the unique identifiers, the base address of the dataset ANN #1 and the base address of the input dataset and store the base address of the dataset ANN #1 and the base address of the input dataset in the configuration registers.
  • the memory controller of the electronic board may further use the bases addresses to access the dataset ANN #1 and the input dataset Data A in memory 505.
  • the ANN computations may include outputting Data B, by the electronic board 105, a result of computation with dataset of ANN #1 and the input dataset A.
  • the dataset A and dataset B can be kept in the memory 505 for further ANN computations.
  • the electronic board 105 may be configured to perform ANN computations using the dataset of ANN #2 and the input dataset Data B. Prior to ANN computations, a base address of the ANN #2 can be stored in configuration register. [00112] In block 1125, the ANN computations may include outputting, by the electronic board 105, results of the computation with the dataset of ANN #2 and the input dataset B. The result of the ANN computations can be stored in memory 505 to be reused in further ANN computations as an input dataset Data C.
  • the electronic board 105 is configured to perform ANN computations via an external neural network API.
  • a decision on which ANN dataset and input dataset to be processed next can be made by the neural network API.
  • the decision can be made based on results of one or more previous ANN computations performed on the same electronic board.
  • the external application needs to read the result of the previous ANN computation from the memory of the electronic board, determine the base addresses or unique identifiers of the next ANN dataset and next input dataset to be processed by the electronic board, and send the base addresses or the unique identifiers to the electronic board. This approach may not be efficient because all information for making the decision is already present on the electronic board and the decision can be made internally on the electronic board.
  • FIG 12A is block diagram showing an electronic board 105, according to some example embodiments.
  • the electronic board 105 may include memory 505 and a programmable block 590.
  • the programmable block 590 may include an instruction unit or programmable logic.
  • the programmable block 590 may include input-output relations for the ANN dataset and input datasets stored in the memory of the electronic board 105.
  • the programmable block 590 may also include instructions, such as decision blocks configured to select the next ANN dataset and the next input dataset to be processed by the electronic board 105. The selection can be carried out by storing corresponding base addresses in configuration registers for the memory controller of the electronic board.
  • the instructions stored in the programmable block 590 can be in a form similar to a "finite state machine” (FSM). In some other embodiments, the instructions stored in the programmable block 590 can be structured as a set of instructions in assembly language.
  • FSM finite state machine
  • FIG. 12B is a flow chart 1200 of example multiple ANN computations.
  • the ANN computations can be performed by an electronic board 105 shown in FIG. 12A.
  • the ANN computations may commence, in block 1205, with loading datasets for ANN #1, ANN #2, and ANN #3 and input dataset Data A in the memory 505 and configuring the programmable block 590 via, for example, a software API.
  • the electronic board 105 may be configured to perform ANN computations using the dataset of ANN #1 and the input dataset Data A.
  • the ANN computations may include outputting, by the electronic board 105, results of computations with dataset of ANN #1 and the input dataset A.
  • the result of computations can be kept in the memory 505 as Data B for further ANN computations.
  • the programmable block 590 may select, based on the results of the previous ANN computations in block 1210, either the dataset of ANN #2 or the dataset of ANN #3 to perform further ANN computations.
  • the programmable block 590 may also select an input dataset to be used with either the dataset of ANN #2 or the dataset of ANN #3.
  • the electronic board 105 may be configured to perform ANN computations using the dataset of ANN #2. In block 1235, the electronic board 105 may output results of computation of the ANN #2.
  • the electronic board 105 may be configured to perform ANN computations using the dataset of ANN #3.
  • the electronic board 105 may output results of computation of the ANN #3.
  • the results of computations of ANN #2 or ANN #3 can be kept in memory 505 for further ANN computations and can be used by the programable block 590 to select further ANN datasets and input datasets.
  • the programmable block 590 can select, iteratively, ANN#2 or ANN#3 to be computed multiple times. At each subsequent iteration, input of the ANN#2 or ANN#3 may include results of computations of ANN#2 or ANN#3 (or other ANNs) generated by previous iterations.
  • FIG. 13 is a block diagram showing a method 1300 for performing multiple locally stored ANN computations, according to some example embodiments.
  • the method 1300 may be performed by the system 100 described above with reference to FIG. 1.
  • the method 1300 may commence, in block 1305, with one or more processing units receiving an ANN dataset associated with at least one ANN of a plurality of ANNs.
  • the method 1300 may include the processing units determining a base address for the ANN, wherein the base address is to be used to locate the ANN dataset in a memory coupled to the one or more processing units.
  • the method 1300 may include the processing units storing the ANN dataset in the memory at the determined base address. [00124] In block 1320, the method 1300 may include the processing units keeping the ANN dataset in the memory until receiving an indication to remove the ANN dataset from the memory.
  • FIG. 14 illustrates an example computing system 1400 that may be used to implement embodiments described herein.
  • the example computing system 1400 of FIG. 14 may include one or more processors 1410 and memory 1420.
  • Memory 1420 may store, in part, instructions and data for execution by the one or more processors 1410.
  • Memory 1420 can store the executable code when the exemplary computing system 1400 is in operation.
  • the processor 1410 may include internal accelerators like a GPU, a FPGA, or similar accelerators that may be suitable for use with embodiments described herein.
  • the memory 1420 may include internal accelerators like a GPU, a FPGA, or similar accelerators that may be suitable for use with embodiments described herein.
  • the example computing system 1400 of FIG. 14 may further include a mass storage 1430, portable storage 1440, one or more output devices 1450, one or more input devices 1460, a network interface 1470, and one or more peripheral devices 1480.
  • the components shown in FIG. 14 are depicted as being connected via a single bus 1490.
  • the components may be connected through one or more data transport means.
  • the one or more processors 1410 and memory 1420 may be connected via a local microprocessor bus, and the mass storage 1430, one or more peripheral devices 1480, portable storage 1440, and network interface 1470 may be connected via one or more input/output buses.
  • Mass storage 1430 which may be implemented with a magnetic disk drive, an optical disk drive, or a solid state drive (SSD), is a non-volatile storage device for storing data and instructions for use by a magnetic disk, an optical disk drive, or SSD, which in turn may be used by one or more processors 1410.
  • Mass storage 1430 can store the system software for implementing embodiments described herein for purposes of loading that software into memory 1420.
  • the mass storage 1430 may also include internal accelerators like a GPU, a FPGA, or similar accelerators that may be suitable for use with embodiments described herein.
  • Portable storage 1440 may operate in conjunction with a portable non-volatile storage medium, such as a compact disk (CD) or digital video disc (DVD), to input and output data and code to and from the computing system 1400 of FIG. 14.
  • the system software for implementing embodiments described herein may be stored on such a portable medium and input to the computing system 1400 via the portable storage 1440.
  • One or more input devices 1460 provide a portion of a user interface.
  • the one or more input devices 1460 may include an alphanumeric keypad, such as a keyboard, for inputting alphanumeric and other information, or a pointing device, such as a mouse, a trackball, a stylus, or cursor direction keys.
  • the computing system 1400 as shown in FIG. 14 includes one or more output devices 1450. Suitable one or more output devices 1450 include speakers, printers, network interfaces, and monitors.
  • Network interface 1470 can be utilized to communicate with external devices, external computing devices, servers, and networked systems via one or more communications networks such as one or more wired, wireless, or optical networks including, for example, the Internet, intranet, LAN, WAN, cellular phone networks (e.g., Global System for Mobile communications network, packet switching communications network, circuit switching communications network), Bluetooth radio, and an IEEE 802.11-based radio frequency network, among others.
  • Network interface 1470 may be a network interface card, such as an Ethernet card, optical transceiver, radio frequency transceiver, or any other type of device that can send and receive information. Other examples of such network interfaces may include Bluetooth®, 3G, 4G, and WiFi® radios in mobile computing devices as well as a USB.
  • One or more peripheral devices 1480 may include any type of computer support device to add additional functionality to the computing system.
  • the one or more peripheral devices 1480 may include a modem or a router.
  • the example computing system 1400 of FIG. 14 may also include one or more accelerator devices 1485.
  • the accelerator devices 1485 may include PCIe-form-factor boards or storage-form-factor boards, or any electronic board equipped with a specific electronic component like a GPU, a Neural Processing Unit, a Multi-CPU component, a FPGA component, or similar accelerating electronic or photonic components, that may be suitable for use with embodiments described herein.
  • the exemplary computing system 1400 of FIG. 14 can be a personal computer, handheld computing device, telephone, mobile computing device, workstation, server, minicomputer, mainframe computer, or any other computing device.
  • the computer can also include different bus configurations, networked platforms, multi-processor platforms, and so forth.
  • Various operating systems (OS) can be used including UNIX, Linux, Windows, Macintosh OS, Palm OS, and other suitable operating systems.
  • Some of the above-described functions may be composed of instructions that are stored on storage media (e.g., computer-readable medium).
  • the instructions may be retrieved and executed by the processor.
  • Some examples of storage media are memory devices, tapes, disks, and the like.
  • the instructions are operational when executed by the processor to direct the processor to operate in accord with the example embodiments.
  • Those skilled in the art are familiar with instructions, processor(s), and storage media.
  • any hardware platform suitable for performing the processing described herein is suitable for use with the example embodiments.
  • the terms "computer-readable storage medium” and “computer-readable storage media” as used herein refer to any medium or media that participate in providing instructions to a CPU for execution.
  • Non-volatile media include, for example, optical or magnetic disks, such as a fixed disk.
  • Volatile media include dynamic memory, such as RAM.
  • Transmission media include coaxial cables, copper wire, and fiber optics, among others, including the wires that include one embodiment of a bus. Transmission media can also take the form of acoustic or light waves, such as those generated during radio frequency and infrared data communications.
  • Computer-readable media include, for example, a floppy disk, a flexible disk, a hard disk, magnetic tape, any other magnetic medium, SSD, a CD-read-only memory (ROM) disk, DVD, any other optical medium, any other physical medium with patterns of marks or holes, a RAM, a PROM, an EPROM, an EEPROM, a FLASHEPROM, any other memory chip or cartridge, a carrier wave, or any other medium from which a computer can read.
  • Various forms of computer-readable media may be involved in carrying one or more sequences of one or more instructions to a CPU for execution.
  • a bus carries the data to system RAM, from which a CPU retrieves and executes the instructions.
  • the instructions received by system RAM can optionally be stored on a fixed disk either before or after execution by a CPU.
  • the instructions or data may not be used by the CPU but be accessed in writing or reading from the other devices without having the CPU directing them.

Landscapes

  • Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • Theoretical Computer Science (AREA)
  • Health & Medical Sciences (AREA)
  • Life Sciences & Earth Sciences (AREA)
  • Biomedical Technology (AREA)
  • Biophysics (AREA)
  • General Health & Medical Sciences (AREA)
  • Data Mining & Analysis (AREA)
  • Evolutionary Computation (AREA)
  • Computational Linguistics (AREA)
  • Molecular Biology (AREA)
  • Computing Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Mathematical Physics (AREA)
  • Software Systems (AREA)
  • Artificial Intelligence (AREA)
  • Neurology (AREA)
  • Image Processing (AREA)

Abstract

La présente invention concerne des systèmes et des procédés pour réaliser de multiples calculs stockés localement de réseau neuronal artificiel (ANN). Un procédé illustratif comprend la réception, par une ou plusieurs unités de traitement, d'un ensemble de données d'ANN associé à au moins un ANN d'une pluralité d'ANN ; le stockage, par des unités de traitement, de l'ensemble de données d'ANN dans une mémoire couplée aux unités de traitement ; l'association, par les unités de traitement, d'une adresse de base à un ou plusieurs ANN, l'adresse de base étant destinée à être utilisée pour localiser l'ensemble de données d'ANN dans la mémoire ; le maintien, par les unités de traitement, de l'ensemble de données d'ANN dans la mémoire ; la réception, par les unités de traitement, d'un ensemble de données d'entrée et de l'adresse de base ; la détermination, par les unités de traitement et sur la base de l'adresse de base, d'une localisation de l'ensemble de données d'ANN dans la mémoire ; et la réalisation, par les unités de traitement, d'un calcul d'ANN en utilisant l'ensemble de données d'ANN et l'ensemble de données d'entrée.
EP19809613.3A 2019-10-22 2019-10-22 Multiples calculs stockés localement de réseau neuronal artificiel Pending EP4049187A1 (fr)

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/IB2019/059023 WO2021079168A1 (fr) 2019-10-22 2019-10-22 Multiples calculs stockés localement de réseau neuronal artificiel

Publications (1)

Publication Number Publication Date
EP4049187A1 true EP4049187A1 (fr) 2022-08-31

Family

ID=68696470

Family Applications (1)

Application Number Title Priority Date Filing Date
EP19809613.3A Pending EP4049187A1 (fr) 2019-10-22 2019-10-22 Multiples calculs stockés localement de réseau neuronal artificiel

Country Status (2)

Country Link
EP (1) EP4049187A1 (fr)
WO (1) WO2021079168A1 (fr)

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US11694066B2 (en) * 2017-10-17 2023-07-04 Xilinx, Inc. Machine learning runtime library for neural network acceleration

Also Published As

Publication number Publication date
WO2021079168A1 (fr) 2021-04-29

Similar Documents

Publication Publication Date Title
US11741345B2 (en) Multi-memory on-chip computational network
US10846621B2 (en) Fast context switching for computational networks
JP7451614B2 (ja) オンチップの計算ネットワーク
US20200226458A1 (en) Optimizing artificial neural network computations based on automatic determination of a batch size
US10990525B2 (en) Caching data in artificial neural network computations
US20200311511A1 (en) Accelerating neuron computations in artificial neural networks by skipping bits
EP3924891A1 (fr) Surveillance de qualité et quantification cachée dans des calculs de réseau neuronal artificiel
US11494624B2 (en) Accelerating neuron computations in artificial neural networks with dual sparsity
US10769527B2 (en) Accelerating artificial neural network computations by skipping input values
WO2020121030A1 (fr) Mise en mémoire cache de données dans des calculs de réseau neuronal artificiel
US20210117800A1 (en) Multiple locally stored artificial neural network computations
EP4049187A1 (fr) Multiples calculs stockés localement de réseau neuronal artificiel
EP3948685A1 (fr) Accélération de calculs neuronaux dans des réseaux neuronaux artificiels par saut de bits
US11126912B2 (en) Realigning streams of neuron outputs in artificial neural network computations
US20220222519A1 (en) Optimizing operations in artificial neural network
US11645510B2 (en) Accelerating neuron computations in artificial neural networks by selecting input data
WO2020144493A1 (fr) Optimisation de calculs de réseau neuronal artificiel sur la base d'une détermination automatique d'une taille de lot
US11748623B2 (en) Modifying structure of artificial neural networks by collocating parameters
WO2022153078A1 (fr) Optimisation d'opérations dans un réseau de neurones artificiels
EP3895073A1 (fr) Réalignement de flux de sorties de neurone dans des calculs de réseau de neurones artificiels
EP3895071A1 (fr) Accélération de calculs de réseau neuronal artificiel par saut de valeurs d'entrée
EP3973464A1 (fr) Accélération de calculs neuronaux dans des réseaux neuronaux artificiels avec double dispersion
EP3953867A1 (fr) Accélération de calculs neuronaux dans des réseaux neuronaux artificiels par sélection des données d'entrée
EP4136584A1 (fr) Structure modificatrice de réseaux neuronaux artificiels en colocalisant des paramètres
WO2022053851A1 (fr) Réglage de précision d'un réseau neuronal artificiel entraîné

Legal Events

Date Code Title Description
STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: UNKNOWN

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: THE INTERNATIONAL PUBLICATION HAS BEEN MADE

PUAI Public reference made under article 153(3) epc to a published international application that has entered the european phase

Free format text: ORIGINAL CODE: 0009012

STAA Information on the status of an ep patent application or granted ep patent

Free format text: STATUS: REQUEST FOR EXAMINATION WAS MADE

17P Request for examination filed

Effective date: 20220331

AK Designated contracting states

Kind code of ref document: A1

Designated state(s): AL AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HR HU IE IS IT LI LT LU LV MC MK MT NL NO PL PT RO RS SE SI SK SM TR

DAV Request for validation of the european patent (deleted)
DAX Request for extension of the european patent (deleted)