Privacy-preserving machine learning (PPML) is a key upcoming trend which enables learning from data while keeping it private. PPML techniques include the use of secure execution techniques, federated learning, secure multi-party computation, and homomorphic encryption (HE). HE is a form of encryption which enables computation on the encrypted data. However, HE encryption schemes are computationally expensive. Accordingly, techniques to reduce the computational expense of HE algorithms are beneficial to PPML and other privacy preserving analysis techniques that enable computations to be performed on private data without exposing the underlying data to the computation device.
The present invention is illustrated by way of example and not limitation in the figures of the accompanying drawings in which like references indicate similar elements, and in which:
For the purposes of explanation, numerous specific details are set forth to provide a thorough understanding of the various embodiments described below. However, it will be apparent to a skilled practitioner in the art that the embodiments may be practiced without some of these specific details. In other instances, well-known structures and devices are shown in block diagram form to avoid obscuring the underlying principles, and to provide a more thorough understanding of embodiments. The techniques and teachings described herein may be applied to a device, system, or apparatus including various types of circuits or semiconductor devices, including general purpose processing devices or graphic processing devices. Reference herein to “one embodiment” or “an embodiment” indicate that a particular feature, structure, or characteristic described in connection or association with the embodiment can be included in at least one of such embodiments. However, the appearances of the phrase “in one embodiment” in various places in the specification do not necessarily all refer to the same embodiment.
In the following description and claims, the terms “coupled” and “connected,” along with their derivatives, may be used. These terms are not intended as synonyms for each other. “Coupled” is used to indicate that two or more elements, which may or may not be in direct physical or electrical contact with each other, co-operate or interact with each other. “Connected” is used to indicate the establishment of communication between two or more elements that are coupled with each other.
Polynomial multiplication in the finite field
(polynomials degree at most N−1 whose coefficients are integers mod q), or similar fields, is a key bottleneck in the cryptography workloads of many HE applications. The negacyclic number-theoretic transform (NTT), both the forward transform and the inverse transform, is a modification of the cyclic NTT that can be used to improve the acceleration of polynomial multiplication. Multiplying two polynomials f(x)*g(x) in this field is typically computed as InvNTT(FwdNTT(f)⊙FwdNTT(g)), where ⊙ indicates element-wise vector-vector modular multiplication. In particular, the NTT is used to speed up polynomial multiplication over a polynomial ring. The core of the NTT computation is modular integer arithmetic, in particular modular addition and multiplication. Notwithstanding numerous optimizations to NTT computation, NTT operations remain a critical performance bottleneck for HE applications.
Described herein is a new set of instructions to optimize the forward and inverse NTT and element-wise modular multiplication. These instructions (vpcondsubuq) perform conditional subtraction and have the potential to provide a significant improvement in the performance of the forward and reverse NTT operation. The vpcondsubuq instruction also has the potential to speed up polynomial addition, which is also common in HE workloads.
Client device(s) associated with the private data 102A-102N can prepare (e.g., format) the data and then encrypt the data into encrypted private data 104A-104N. The encrypted private data 104A-104N can then be provided to the homomorphic evaluator 110 for processing in a privacy preserving manner. The homomorphic evaluator 110 uses HE algorithms to perform inference, analysis, and other mathematical operations on encrypted data. HE operations performed by the homomorphic evaluator 110 produce an encrypted result 112 that is consistent with the result that would be produced if equivalent mathematical operations had been performed on unencrypted data. The encrypted result 112 can then be provided to a data consumer 114 for decryption and consumption. To enable encryption of the private data 102A-102N and the decryption of the encrypted result 112, the data consumer 114 can generate a public and private homomorphic key pair. The public key enables the encryption of the private data (e.g., by the one or more clients that possess the private data 102A-102N). The private key enables the data consumer 114 to decrypt an analysis result that is generated by the homomorphic evaluator 110 based on the encrypted data.
The performance and efficiency of the HE operations that are performed by the homomorphic evaluator 110 can be improved via the use of processing resources (e.g., central processing units (CPU), graphics processing units (GPUs), compute accelerators, Field Programmable Gate Arrays (FPGAs), etc.) that provide support for an instruction set architecture (ISA) that includes instructions to accelerate the performance and/or efficiency of routinely performed HE operations. For example, the performance and efficiency of HE operations can be improved by providing instructions that enable common operations to be performed using a reduced number of instructions. Embodiments described herein provide processing resources that include support for instructions to accelerate HE operations.
The data storage 210 can include a region of secure data storage 212, which is used to store encrypted private data 104A-104N. Although the encrypted private data 104A-104N is encrypted, the secure data storage 212 can be further encrypted using additional encryption keys, such as, for example keys that are specific to the homomorphic evaluator 110, the service provider associated with the homomorphic evaluator 110, and/or keys that are specific to the client that are managed by the encrypted private data 104A-104N. Data storage 210 can also include homomorphic encryption libraries (HE libraries 214). Exemplary HE libraries 214 include but are not limited to the SEAL, PALISADE, and libraries. The SEAL and PALISADE homomorphic encryption libraries enable the performance of homomorphic encryption operations on encrypted data. The HEXL (homomorphic encryption acceleration) library accelerates the performance of the SEAL and PALISADE libraries by providing efficient implementations of integer arithmetic on Galois fields, which are prevalent and frequently performed operations in encryption generally and homomorphic encryption in particular.
While specific exemplary libraries are described, embodiments described herein provide instructions that may be used by, and are not specific to, any particular software that is executable by the processing resources described herein. For example, HE libraries 214, and any other program code, can use instructions provided herein to accelerate number-theoretic transform operations (NTT operations 215), element-wise modular multiplication operations 216, and polynomial addition operations 217. Acceleration is performed via hardware logic 225 within the CPU(s) 220 and/or hardware logic 235 within the GPU(s), where the hardware logic 225 of the CPU(s) 220 and the hardware logic 235 of the GPU(s) 230 are implemented in the respective processors via circuitry that includes configurable hardware logic and/or fixed-functionality hardware logic.
The NTT associated with NTT operations 215 is equivalent to the fast Fourier transform (FFT) in a finite (Galois) field, such that all addition and multiplications are performed with respect to the modulus q. As noted above, multiplying two polynomials f(x)*g(x) in this field is typically computed as InvNTT(FwdNTT(f)⊙FwdNTT(g)), where ⊙ indicates element-wise vector-vector modular multiplication. The NTT-based formulation reduces the runtime of polynomial-polynomial modular multiplication from O(N2) to O(N log N).
The forward NTT can be implemented using the Cooley-Tukey radix-2 transform shown in Table 1, where a=(a0, a1, . . . , aN-1)∈qN in standard ordering, N is a power of 2, q is a prime satisfying q≡1 mod 2N, and ψrev∈qN stores the powers of ψ in bit-reversed order.
The “butterfly” operation in lines 9-14 of the Cooley-Tukey Radix-2 NTT is the bulk of the computation and include modular addition and modular multiplication. Optimizations to the butterfly operation are also possible, for example using the Harvey NTT butterfly, which delays modular reduction for improved performance. For the Harvey NTT shown in Table 2, β=264 is the typical word size for 64-bit processors.
Using the Harvey butterfly in the Cooley-Tukey NTT yields outputs in 4qN, so an additional correction step is performed to reduce the output to qN. An exemplary inverse NTT operation in the form of the Gentleman-Sande inverse NTT algorithm is shown in Table 3.
Where the Harvey NTT Butterfly optimization is used, the Harvey inverse NTT Butterfly of Table 4 may be used for the inverse NTT.
Element-wise modular multiplication in HE workloads can use Barrett reduction to speed up the modular reduction step. Barrett reduction uses a Barrett factor, which is a pre-computed integer k, to simplify the reduction to a series of bit-shifts, multiplications, and subtractions. Barrett reduction can be performed as shown in Table 5.
As the operations described above are used in HE algorithms, improving the performance of the above operations can improve the performance of HE implementations that include the above operations.
A set of conditional subtraction instructions are shown in Table 6 below.
The conditional instructions of Table 6, when executed, cause a processing resource (e.g., CPU, GPU) to compare packed unsigned N-bit integers in src1 to packed unsigned N-bit integers in src2 and store the output of the comparison to an 8-bit intermediate mask. For each bit set in the intermediate mask, the processing resource then subtracts the corresponding N-bit integer in src2 from the corresponding N-bit integer in src1 and stores the result in the corresponding packed N-bit integer in the destination. For each bit not set in the intermediate mask, writes the corresponding N-bit integer from src1 to the destination. The processing resource can then return the destination. Operand data can be stored in 128-bit (xmm) registers, 256-bit (ymm) registers, or 512-bit (zmm) registers. Operands may also be read from or written to memory addresses storing 128-bit, 256-bit, or 512-bit packed data, with each element being an N-bit integer. The bit-widths that are most useful for HE applications are N=32, N=64, although embodiments are not limited to those specific values. While instructions using 128-bit, 256-bit, and 512-bit registers or packed memory locations are shown, embodiments are not limited to those specific widths.
The instructions of Table 6 can be performed using operations shown in Table 7.
In the operations shown in Table 7, a conditional subtraction is performed for each N-bit integer element in which either (src1-src2) or src1 is assigned to the destination element based on whether the src1 element is greater than or equal to the respective src2 element.
Variant conditional subtraction instructions are shown in Table 8 below, in which the conditional subtraction instruction 300 using a single 64-bit integer for the second source operand 308 as in
The variant instructions of Table 8 are useful in cases such as the NTT and Barrett reduction, where the same modulus may be re-used many times. The variant instructions of Table 8 can be performed using operations shown in Table 9.
In the operations shown in Table 9, a conditional subtraction is performed for each N-bit src1 integer element and a single 64-bit src2 integer element in which either (src1-src2) or src1 is assigned to the destination element based on whether a src1 element is greater than or equal to the specified src2 element. Conditional subtraction is common in HE kernels. In particular, for x, y<q, where q is a modulus, vpcondsubuq(x+y, q) will return (x+y) mod q. Modular addition is common in the NTT and in some instances can be performed using a reduced number of instructions when a conditional subtraction instruction is used. Conditional subtraction is also common in Barrett reduction, as shown by lines 6-7 in Table 5 above.
As discussed above, a vpcondsubuq instruction be embodied in several forms, including a 128-bit, 256-bit, and 512-bit form. Furthermore, the packed integers may be of different bit widths. For example, a vpcondsubuq instruction may operate on packed 64-bit integers or packed 32-bit integers. Additionally, one embodiment provides a vpcondsubq instruction that operates on signed integers, which may be useful in cases where elements of Zq={integers mod q} are represented using the range [−q/2, q/2). For comparison, the unsigned integer instantiation may be useful when Zq is represented using the range [0,q).
As shown in
As shown in
A conditional subtraction instruction as described herein can be used to reduce the number of instructions of used in key HE operations, as indicated by the exemplary butterfly operations shown in Table 10 and Table 11.
The instructions on line 04 and line 05 of Table 10 are intrinsic instructions that map directly to associated assembly instructions to perform an element-wise subtraction of packed 64-bit integers (line 04) and an element-wise selection of the minimum result of two source inputs (line 5), where the specified source inputs are the src1 input of the subtraction instruction and the packed result of the subtraction operation. Line 04 and line 05 of Table 10 can be replaced with an intrinsic instruction_mm512_con_sub_epi64, shown on line 04 of Table 11, which maps to a conditional subtraction instruction described herein (e.g., vpcondsubuq zmm1, zmm2/m512 of Table 6 above). Improving the efficiency of a frequently used operation by eliminating an instruction can result in a significant improvement in the performance of HE operations that make use of the NTT butterfly operation.
An exemplary inverse butterfly implementation can also be improved via the use of a conditional subtraction instruction as described herein, as shown in Table 12 and Table 13.
As shown above, three instructions (line 04-06) of an exemplary inverse NTT butterfly operation may be reduced to two instructions (line 04-05) via the use of a conditional subtraction instruction described herein. Additionally, the efficiency of an element-wise modular multiplication routine can also be improved via the use of a conditional subtraction instruction, as shown in Table 14 and Table 15 below.
The element-wise multiplication of Table 14 and Table 15 computes returns ((v_operand1*v_operand2) mod v_modulus) in each packed 64-bit integer slot. The conditional subtraction operation of lines 15-16 of Table 14 can be replaced with a single condition subtraction instruction, as shown in line 15 of Table 15.
The above embodiments provide a processor comprising first circuitry to decode an instruction into a decoded instruction, the instruction to indicate a first source operand and a second source operand and second circuitry including a processing resource to execute the decoded instruction. Responsive to the decoded instruction, the processing resource outputs a result of first source operand data minus second source operand data in response to a determination by the processing resource that the first source operand data is greater than or equal to the second source operand data. Otherwise, the processing resource outputs the first source operand data. The processor and associated processing resource may be a CPU, GPU, or another type of processor, or an accelerator device. The processing resource may also reside in an FPGA coupled with a CPU, GPU, and/or accelerator device. The first source operand specifies a location of the first source operand data and the second source operand specifies a location of the second source operand data, where the locations for operand data can be a register location or a memory location. The first source operand data is a packed data type including multiple data elements, while the second source operand data can be a single data element of a packed data type including multiple data elements. The processing resource outputs a result of a first data element of the first source operand data minus a corresponding element of the second source operand data in response to a determination by the processing resource that the first data element of the first source operand data is greater than or equal to the corresponding data element of the second source operand data. Otherwise, the processing element will output the first data element of the first source operand data. The data elements can be 32-bit integer data elements or 64-bit integer data elements. The data elements can be signed or unsigned integers. The packed data type can be 128-bits, 256-bits, or 512-bits in width. The instruction can also indicate a destination operand to specify a destination. The processing resource can output the result of first source operand data minus second source operand data or the first source operand data to the destination. The destination operand can specify a 128-bit register, a 256-bit register, or a 512-bit register. The destination operand can also specify a memory location that is configured to store a 128-bit, 256-bit, or 512-bit packed data type.
The above embodiments also provide an apparatus comprising decoder circuitry to decode a single instruction, the single instruction to include a field for an identifier of a first source operand, a field for an identifier of a second source operand, a field for an identifier of a destination operand, and a field for an opcode, the opcode to indicate execution circuitry is to perform a conditional subtraction operation on first source operand data associated with the first source operand and second source operand data associated with the second source operand. The apparatus includes execution circuitry to execute the decoded instruction according to the opcode, the execution circuitry to output a result of the first source operand data minus the second source operand data in response to a determination by the execution circuitry that the first source operand data is greater than or equal to the second source operand data, otherwise execution circuitry is to output the first source operand data. The field for the identifier of the first source operand can identify a vector register or a memory location. The execution circuitry to perform a subtraction operation to subtract one or more data elements of the second source operand data from one or more corresponding data elements of the first source operand data and conditionally output a subtraction result for each corresponding set of one or more data elements based on a status bit generated based on the subtraction operation.
A further embodiment provides method comprising decoding an instruction via decoder circuitry of a processor, the instruction decoded into a decoded instruction, the instruction to indicate a first source operand and a second source operand and executing the decoded instruction via execution circuitry of the processors, wherein executing the decoded instruction includes outputting a result of first source operand data minus second source operand data in response to a determination by the execution circuitry that the first source operand data is greater than or equal to the second source operand data, otherwise outputting, via the execution circuitry, the first source operand data. The first source operand specifies a location of the first source operand data, the first source operand data is a packed data type including multiple data elements, the second source operand specifies a location of the second source operand data, and the second source operand data includes at least one data element. The method additionally includes outputting a result of a first data element of the first source operand data minus a corresponding element of the second source operand data in response to a determination by the execution circuitry that the first data element of the first source operand data is greater than or equal to the corresponding element of the second source operand data and otherwise output the first data element of the first source operand data. In one embodiment the second source operand data is a packed data type including multiple data elements and executing the decoded instruction includes outputting a result for multiple data elements of the first source operand and corresponding data elements of the second source operand.
One embodiment provides a data processing system comprising a network interface, a memory device storing instructions, and one or more processors coupled with the network interface and the memory device. The one or more processors include a general-purpose processor (e.g., CPU) and/or a general-purpose graphics processor (GPGPU). The instructions to provide a homomorphic encryption acceleration library including primitives to accelerate homomorphic encryption operations. The one or more processors, responsive to execution of the instructions, are configured to receive a set of encrypted data via the network interface, wherein the set of encrypted data is encrypted via a homomorphic encryption scheme and perform an arithmetic operation on the set of encrypted data via a primitive provided by the homomorphic encryption acceleration library, the arithmetic operation including a conditional subtraction operation. The conditional subtraction operation is performed via a single instruction executed by the one or more processors, where the single instruction is provided by an instruction set architecture of the one or more processors. The conditional subtraction operation includes a number-theoretic transform operation and the conditional subtraction operation is associated with a butterfly operation of the number-theoretic transform operation. The arithmetic operation also includes an inverse number-theoretic transform operation and the conditional subtraction operation can also be performed in associated with an inverse butterfly operation of the number-theoretic transform operation. In one embodiment the conditional subtraction operation can also be associated with an element-wise modular multiplication operation and/or an element-wise modular addition operation.
Other processors, devices, and/or systems may also be provided based on the details above and the architectural details provided below.
In one embodiment, processing system 800 can include, couple with, or be integrated within: a server-based gaming platform; a game console, including a game and media console; a mobile gaming console, a handheld game console, or an online game console. In some embodiments the processing system 800 is part of a mobile phone, smart phone, tablet computing device or mobile Internet-connected device such as a laptop with low internal storage capacity. Processing system 800 can also include, couple with, or be integrated within: a wearable device, such as a smart watch wearable device; smart eyewear or clothing enhanced with augmented reality (AR) or virtual reality (VR) features to provide visual, audio or tactile outputs to supplement real world visual, audio or tactile experiences or otherwise provide text, audio, graphics, video, holographic images or video, or tactile feedback; other augmented reality (AR) device; or other virtual reality (VR) device. In some embodiments, the processing system 800 includes or is part of a television or set top box device. In one embodiment, processing system 800 can include, couple with, or be integrated within a self-driving vehicle such as a bus, tractor trailer, car, motor or electric power cycle, plane or glider (or any combination thereof). The self-driving vehicle may use processing system 800 to process the environment sensed around the vehicle.
In some embodiments, the one or more processors 802 each include one or more processor cores 807 to process instructions which, when executed, perform operations for system or user software. In some embodiments, at least one of the one or more processor cores 807 is configured to process a specific instruction set 809. In some embodiments, instruction set 809 may facilitate Complex Instruction Set Computing (CISC), Reduced Instruction Set Computing (RISC), or computing via a Very Long Instruction Word (VLIW). One or more processor cores 807 may process a different instruction set 809, which may include instructions to facilitate the emulation of other instruction sets. Processor core 807 may also include other processing devices, such as a Digital Signal Processor (DSP).
In some embodiments, the processor 802 includes cache memory 804. Depending on the architecture, the processor 802 can have a single internal cache or multiple levels of internal cache. In some embodiments, the cache memory is shared among various components of the processor 802. In some embodiments, the processor 802 also uses an external cache (e.g., a Level-3 (L3) cache or Last Level Cache (LLC)) (not shown), which may be shared among processor cores 807 using known cache coherency techniques. A register file 806 can be additionally included in processor 802 and may include different types of registers for storing different types of data (e.g., integer registers, floating-point registers, status registers, and an instruction pointer register). Some registers may be general-purpose registers, while other registers may be specific to the design of the processor 802.
In some embodiments, one or more processor(s) 802 are coupled with one or more interface bus(es) 810 to transmit communication signals such as address, data, or control signals between processor 802 and other components in the processing system 800. The interface bus 810, in one embodiment, can be a processor bus, such as a version of the Direct Media Interface (DMI) bus. However, processor busses are not limited to the DMI bus, and may include one or more Peripheral Component Interconnect buses (e.g., PCI, PCI express), memory busses, or other types of interface busses. In one embodiment the processor(s) 802 include an integrated memory controller 816 and a platform controller hub 830. The memory controller 816 facilitates communication between a memory device and other components of the processing system 800, while the platform controller hub (PCH) 830 provides connections to I/O devices via a local I/O bus.
The memory device 820 can be a dynamic random-access memory (DRAM) device, a static random-access memory (SRAM) device, flash memory device, phase-change memory device, or some other memory device having suitable performance to serve as process memory. In one embodiment the memory device 820 can operate as system memory for the processing system 800, to store data 822 and instructions 821 for use when the one or more processors 802 executes an application or process. Memory controller 816 also couples with an optional external graphics processor 818, which may communicate with the one or more graphics processors 808 in processors 802 to perform graphics and media operations. In some embodiments, graphics, media, and or compute operations may be assisted by an accelerator 812 which is a coprocessor that can be configured to perform a specialized set of graphics, media, or compute operations. For example, in one embodiment the accelerator 812 is a matrix multiplication accelerator used to optimize machine learning or compute operations. In one embodiment the accelerator 812 is a ray-tracing accelerator that can be used to perform ray-tracing operations in concert with the graphics processor 808. In one embodiment, an external accelerator 819 may be used in place of or in concert with the accelerator 812.
In some embodiments a display device 811 can connect to the processor(s) 802. The display device 811 can be one or more of an internal display device, as in a mobile electronic device or a laptop device or an external display device attached via a display interface (e.g., DisplayPort, etc.). In one embodiment the display device 811 can be a head mounted display (TIMID) such as a stereoscopic display device for use in virtual reality (VR) applications or augmented reality (AR) applications.
In some embodiments the platform controller hub 830 enables peripherals to connect to memory device 820 and processor 802 via a high-speed I/O bus. The I/O peripherals include, but are not limited to, an audio controller 846, a network controller 834, a firmware interface 828, a wireless transceiver 826, touch sensors 825, a data storage device 824 (e.g., non-volatile memory, volatile memory, hard disk drive, flash memory, NAND, 3D NAND, 3D XPoint, etc.). The data storage device 824 can connect via a storage interface (e.g., SATA) or via a peripheral bus, such as a Peripheral Component Interconnect bus (e.g., PCI, PCI express). The touch sensors 825 can include touch screen sensors, pressure sensors, or fingerprint sensors. The wireless transceiver 826 can be a Wi-Fi transceiver, a Bluetooth transceiver, or a mobile network transceiver such as a 3G, 4G, 5G, or Long-Term Evolution (LTE) transceiver. The firmware interface 828 enables communication with system firmware, and can be, for example, a unified extensible firmware interface (UEFI). The network controller 834 can enable a network connection to a wired network. In some embodiments, a high-performance network controller (not shown) couples with the interface bus 810. The audio controller 846, in one embodiment, is a multi-channel high-definition audio controller. In one embodiment the processing system 800 includes an optional legacy I/O controller 840 for coupling legacy (e.g., Personal System 2 (PS/2)) devices to the system. The platform controller hub 830 can also connect to one or more Universal Serial Bus (USB) controllers 842 connect input devices, such as keyboard and mouse 843 combinations, a camera 844, or other USB input devices.
It will be appreciated that the processing system 800 shown is exemplary and not limiting, as other types of data processing systems that are differently configured may also be used. For example, an instance of the memory controller 816 and platform controller hub 830 may be integrated into a discrete external graphics processor, such as the external graphics processor 818. In one embodiment the platform controller hub 830 and/or memory controller 816 may be external to the one or more processor(s) 802. For example, the processing system 800 can include an external memory controller 816 and platform controller hub 830, which may be configured as a memory controller hub and peripheral controller hub within a system chipset that is in communication with the processor(s) 802.
For example, circuit boards (“sleds”) can be used on which components such as CPUs, memory, and other components are placed are designed for increased thermal performance. In some examples, processing components such as the processors are located on a top side of a sled while near memory, such as DIMNs, are located on a bottom side of the sled. As a result of the enhanced airflow provided by this design, the components may operate at higher frequencies and power levels than in typical systems, thereby increasing performance. Furthermore, the sleds are configured to blindly mate with power and data communication cables in a rack, thereby enhancing their ability to be quickly removed, upgraded, reinstalled, and/or replaced. Similarly, individual components located on the sleds, such as processors, accelerators, memory, and data storage drives, are configured to be easily upgraded due to their increased spacing from each other. In the illustrative embodiment, the components additionally include hardware attestation features to prove their authenticity.
A data center can utilize a single network architecture (“fabric”) that supports multiple other network architectures including Ethernet and Omni-Path. The sleds can be coupled to switches via optical fibers, which provide higher bandwidth and lower latency than typical twisted pair cabling. Due to the high bandwidth, low latency interconnections and network architecture, the data center may, in use, pool resources, such as memory, accelerators (e.g., GPUs, graphics accelerators, FPGAs, ASICs, neural network and/or artificial intelligence accelerators, etc.), and data storage drives that are physically disaggregated, and provide them to compute resources (e.g., processors) on an as needed basis, enabling the compute resources to access the pooled resources as if they were local.
A power supply or source can provide voltage and/or current to processing system 800 or any component or system described herein. In one example, the power supply includes an AC to DC (alternating current to direct current) adapter to plug into a wall outlet. Such AC power can be renewable energy (e.g., solar power) power source. In one example, power source includes a DC power source, such as an external AC to DC converter. In one example, power source or power supply includes wireless charging hardware to charge via proximity to a charging field. In one example, power source can include an internal battery, alternating current supply, motion-based power supply, solar power supply, or fuel cell source.
In some embodiments, processor 900 may also include a set of one or more bus controller units 916 and a system agent core 910. The one or more bus controller units 916 manage a set of peripheral buses, such as one or more PCI or PCI express busses. System agent core 910 provides management functionality for the various processor components. In some embodiments, system agent core 910 includes one or more integrated memory controllers 914 to manage access to various external memory devices (not shown).
In some embodiments, one or more of the processor cores 902A-902N include support for simultaneous multi-threading. In such embodiment, the system agent core 910 includes components for coordinating and operating cores 902A-902N during multi-threaded processing. System agent core 910 may additionally include a power control unit (PCU), which includes logic and components to regulate the power state of processor cores 902A-902N and graphics processor 908.
In some embodiments, processor 900 additionally includes a graphics processor 908 to execute graphics processing operations. In some embodiments, the graphics processor 908 couples with the set of shared cache units 906, and the system agent core 910, including the one or more integrated memory controllers 914. In some embodiments, the system agent core 910 also includes a display controller 911 to drive graphics processor output to one or more coupled displays. In some embodiments, display controller 911 may also be a separate module coupled with the graphics processor via at least one interconnect, or may be integrated within the graphics processor 908.
In some embodiments, a ring-based interconnect 912 is used to couple the internal components of the processor 900. However, an alternative interconnect unit may be used, such as a point-to-point interconnect, a switched interconnect, or other techniques, including techniques well known in the art. In some embodiments, graphics processor 908 couples with the ring-based interconnect 912 via an I/O link 913.
The exemplary I/O link 913 represents at least one of multiple varieties of I/O interconnects, including an on package I/O interconnect which facilitates communication between various processor components and a memory module 918, such as an eDRAM module or high-bandwidth memory (HBM) memory modules. In one embodiment the memory module 918 can be an eDRAM module and each of the processor cores 902A-902N and graphics processor 908 can use the memory module 918 as a shared LLLC. In one embodiment, the memory module 918 is an HBM memory module that can be used as a primary memory module or as part of a tiered or hybrid memory system that also includes double data rate synchronous DRAM, such as DDR5 SDRAM, and/or persistent memory (PMem). The processor 900 can include multiple instances of the I/O link 913 and memory module 918.
In some embodiments, processor cores 902A-902N are homogenous cores executing the same instruction set architecture. In another embodiment, processor cores 902A-902N are heterogeneous in terms of instruction set architecture (ISA), where one or more of processor cores 902A-902N execute a first instruction set, while at least one of the other cores executes a subset of the first instruction set or a different instruction set. In one embodiment, processor cores 902A-902N are heterogeneous in terms of microarchitecture, where one or more cores having a relatively higher power consumption couple with one or more power cores having a lower power consumption. In one embodiment, processor cores 902A-902N are heterogeneous in terms of computational capability. Additionally, processor 900 can be implemented on one or more chips or as an SoC (system-on-a-chip) integrated circuit having the illustrated components, in addition to other components.
In some embodiments, the function block 930 includes a geometry/fixed function pipeline 931 that can be shared by all execution cores in the graphics processor core block 919. In various embodiments, the geometry/fixed function pipeline 931 includes a 3D geometry pipeline a video front-end unit, a thread spawner and global thread dispatcher, and a unified return buffer manager, which manages unified return buffers. In one embodiment the function block 930 also includes a graphics SoC interface 932, a graphics microcontroller 933, and a media pipeline 934. The graphics SoC interface 932 provides an interface between the graphics processor core block 919 and other core blocks within a graphics processor or compute accelerator SoC. The graphics microcontroller 933 is a programmable sub-processor that is configurable to manage various functions of the graphics processor core block 919, including thread dispatch, scheduling, and pre-emption. The media pipeline 934 includes logic to facilitate the decoding, encoding, pre-processing, and/or post-processing of multimedia data, including image and video data. The media pipeline 934 implement media operations via requests to compute or sampling logic within the execution cores 921-921F. One or more pixel backends 935 can also be included within the function block 930. The pixel backends 935 include a cache memory to store pixel color values and can perform blend operations and lossless color compression of rendered pixel data.
In one embodiment the SoC interface 932 enables the graphics processor core block 919 to communicate with general-purpose application processor cores (e.g., CPUs) and/or other components within an SoC or a system host CPU that is coupled with the SoC via a peripheral interface. The SoC interface 932 also enables communication with off-chip memory hierarchy elements such as a shared last level cache memory, system RAM, and/or embedded on-chip or on-package DRAM. The SoC interface 932 can also enable communication with fixed function devices within the SoC, such as camera imaging pipelines, and enables the use of and/or implements global memory atomics that may be shared between the graphics processor core block 919 and CPUs within the SoC. The SoC interface 932 can also implement power management controls for the graphics processor core block 919 and enable an interface between a clock domain of the graphics processor core block 919 and other clock domains within the SoC. In one embodiment the SoC interface 932 enables receipt of command buffers from a command streamer and global thread dispatcher that are configured to provide commands and instructions to each of one or more graphics cores within a graphics processor. The commands and instructions can be dispatched to the media pipeline 934 when media operations are to be performed, the geometry and fixed function pipeline 931 when graphics processing operations are to be performed. When compute operations are to be performed, compute dispatch logic can dispatch the commands to the execution cores 921A-921F, bypassing the geometry and media pipelines.
The graphics microcontroller 933 can be configured to perform various scheduling and management tasks for the graphics processor core block 919. In one embodiment the graphics microcontroller 933 can perform graphics and/or compute workload scheduling on the various graphics parallel engines within execution unit (EU) arrays 922A-922F, 924A-924F within the execution cores 921A-921F. In this scheduling model, host software executing on a CPU core of an SoC including the graphics processor core block 919 can submit workloads one of multiple graphic processor doorbells, which invokes a scheduling operation on the appropriate graphics engine. Scheduling operations include determining which workload to run next, submitting a workload to a command streamer, pre-empting existing workloads running on an engine, monitoring progress of a workload, and notifying host software when a workload is complete. In one embodiment the graphics microcontroller 933 can also facilitate low-power or idle states for the graphics processor core block 919, providing the graphics processor core block 919 with the ability to save and restore registers within the graphics processor core block 919 across low-power state transitions independently from the operating system and/or graphics driver software on the system.
The graphics processor core block 919 may have greater than or fewer than the illustrated execution cores 921A-921F, up to N modular execution cores. For each set of N execution cores, the graphics processor core block 919 can also include shared/cache memory 936, which can be configured as shared memory or cache memory, rasterizer logic 937, and additional fixed function logic 938 to accelerate various graphics and compute processing operations.
Within each execution cores 921A-921F is set of execution resources that may be used to perform graphics, media, and compute operations in response to requests by graphics pipeline, media pipeline, or shader programs. The graphics execution cores 921A-921F include multiple vector engines 922A-922F, 924A-924F, matrix acceleration units 923A-923F, 925A-925D, cache/shared local memory (SLM), a sampler 926A-926F, and a ray tracing unit 927A-927F.
The vector engines 922A-922F, 924A-924F are general-purpose graphics processing units capable of performing floating-point and integer/fixed-point logic operations in service of a graphics, media, or compute operation, including graphics, media, or compute/GPGPU programs. The vector engines 922A-922F, 924A-924F can operate at variable vector widths using SIMD, SIMT, or SIMT+SIMD execution modes. The matrix acceleration units 923A-923F, 925A-925D include matrix-matrix and matrix-vector acceleration logic that improves performance on matrix operations, particularly low and mixed precision (e.g., INT8, FP16) matrix operations used for machine learning. In one embodiment, each of the matrix acceleration units 923A-923F, 925A-925D includes one or more systolic arrays of processing elements that can perform concurrent matrix multiply or dot product operations on matrix elements.
The sampler 925A-925F can read media or texture data into memory and can sample data differently based on a configured sampler state and the texture/media format that is being read. Threads executing on the vector engines 922A-922F, 924A-924F or matrix acceleration units 923A-923F, 925A-925D can make use of the cache/SLM 928A-928F within each execution core. The cache/SLM 928A-928F can be configured as cache memory or as a pool of shared memory that is local to each of the respective execution cores 921A-921F. The ray tracing units 927A-927F within the execution cores 921A-921F include ray traversal/intersection circuitry for performing ray traversal using bounding volume hierarchies (BVHs) and identifying intersections between rays and primitives enclosed within the BVH volumes. In one embodiment the ray tracing units 927A-927F include circuitry for performing depth testing and culling (e.g., using a depth buffer or similar arrangement). In one implementation, the ray tracing units 927A-927F perform traversal and intersection operations in concert with image denoising, at least a portion of which may be performed using an associated matrix acceleration unit 923A-923F, 925A-925D.
As shown in
As shown in
The front end unit circuitry 1030 may include branch prediction unit circuitry 1032 coupled to an instruction cache unit circuitry 1034, which is coupled to an instruction translation lookaside buffer (TLB) 1036, which is coupled to instruction fetch unit circuitry 1038, which is coupled to decode unit circuitry 1040. In one embodiment, the instruction cache unit circuitry 1034 is included in the memory unit circuitry 1070 rather than the front end unit circuitry 1030. The decode unit circuitry 1040 (or decoder) may decode instructions, and generate as an output one or more micro-operations, micro-code entry points, microinstructions, other instructions, or other control signals, which are decoded from, or which otherwise reflect, or are derived from, the original instructions. The decode unit circuitry 1040 may further include an address generation unit circuitry (AGU, not shown). In one embodiment, the AGU generates an LSU address using forwarded register ports, and may further perform branch forwarding (e.g., immediate offset branch forwarding, LR register branch forwarding, etc.). The decode unit circuitry 1040 may be implemented using various different mechanisms. Examples of suitable mechanisms include, but are not limited to, look-up tables, hardware implementations, programmable logic arrays (PLAs), microcode read only memories (ROMs), etc. In one embodiment, the processor core 1090 includes a microcode ROM (not shown) or other medium that stores microcode for certain macroinstructions (e.g., in decode unit circuitry 1040 or otherwise within the front end unit circuitry 1030). In one embodiment, the decode unit circuitry 1040 includes a micro-operation (micro-op) or operation cache (not shown) to hold/cache decoded operations, micro-tags, or micro-operations generated during the decode or other stages of the processor pipeline 1000. The decode unit circuitry 1040 may be coupled to rename/allocator unit circuitry 1052 in the execution engine circuitry 1050.
The execution engine circuitry 1050 includes the rename/allocator unit circuitry 1052 coupled to a retirement unit circuitry 1054 and a set of one or more scheduler(s) circuitry 1056. The scheduler(s) circuitry 1056 represents any number of different schedulers, including reservations stations, central instruction window, etc. In some embodiments, the scheduler(s) circuitry 1056 can include arithmetic logic unit (ALU) scheduler/scheduling circuitry, ALU queues, arithmetic generation unit (AGU) scheduler/scheduling circuitry, AGU queues, etc. The scheduler(s) circuitry 1056 is coupled to the physical register file(s) circuitry 1058. Each of the physical register file(s) circuitry 1058 represents one or more physical register files, different ones of which store one or more different data types, such as scalar integer, scalar floating-point, packed integer, packed floating-point, vector integer, vector floating-point, status (e.g., an instruction pointer that is the address of the next instruction to be executed), etc. In one embodiment, the physical register file(s) circuitry 1058 includes vector registers unit circuitry, writemask registers unit circuitry, and scalar register unit circuitry. These register units may provide architectural vector registers, vector mask registers, general-purpose registers, etc. The physical register file(s) circuitry 1058 is overlapped by the retirement unit circuitry 1054 (also known as a retire queue or a retirement queue) to illustrate various ways in which register renaming and out-of-order execution may be implemented (e.g., using a reorder buffer(s) (ROB(s)) and a retirement register file(s); using a future file(s), a history buffer(s), and a retirement register file(s); using a register maps and a pool of registers; etc.). The retirement unit circuitry 1054 and the physical register file(s) circuitry 1058 are coupled to the execution cluster(s) 1060. The execution cluster(s) 1060 includes a set of one or more execution unit circuitry 1062 and a set of one or more memory access circuitry 1064. The execution unit circuitry 1062 may perform various arithmetic, logic, floating-point or other types of operations (e.g., shifts, addition, subtraction, multiplication) and on various types of data (e.g., scalar floating-point, packed integer, packed floating-point, vector integer, vector floating-point). While some embodiments may include a number of execution units or execution unit circuitry dedicated to specific functions or sets of functions, other embodiments may include only one execution unit circuitry or multiple execution units/execution unit circuitry that all perform all functions. The scheduler(s) circuitry 1056, physical register file(s) circuitry 1058, and execution cluster(s) 1060 are shown as being possibly plural because certain embodiments create separate pipelines for certain types of data/operations (e.g., a scalar integer pipeline, a scalar floating-point/packed integer/packed floating-point/vector integer/vector floating-point pipeline, and/or a memory access pipeline that each have their own scheduler circuitry, physical register file(s) unit circuitry, and/or execution cluster—and in the case of a separate memory access pipeline, certain embodiments are implemented in which only the execution cluster of this pipeline has the memory access unit(s) circuitry 1064). It should also be understood that where separate pipelines are used, one or more of these pipelines may be out-of-order issue/execution and the rest in-order.
In some embodiments, the execution engine circuitry 1050 may perform load store unit (LSU) address/data pipelining to an Advanced Microcontroller Bus (AHB) interface (not shown), and address phase and writeback, data phase load, store, and branches.
The set of memory access circuitry 1064 is coupled to the memory unit circuitry 1070, which includes data TLB unit circuitry 1072 coupled to a data cache circuitry 1074 coupled to a level 2 (L2) cache circuitry 1076. In one exemplary embodiment, the memory access circuitry 1064 may include a load unit circuitry, a store address unit circuit, and a store data unit circuitry, each of which is coupled to the data TLB circuitry 1072 in the memory unit circuitry 1070. The instruction cache circuitry 1034 is further coupled to level 2 (L2) cache circuitry 1076 in the memory unit circuitry 1070. In one embodiment, the instruction cache circuitry 1034 and the data cache circuitry 1074 are combined into a single instruction and data cache (not shown) in L2 cache circuitry 1076, a level 3 (L3) cache unit circuitry (not shown), and/or main memory. The L2 cache circuitry 1076 is coupled to one or more other levels of cache and eventually to a main memory.
The processor core 1090 may support one or more instructions sets (e.g., the x86 instruction set (with some extensions that have been added with newer versions); the MIPS instruction set; the ARM instruction set (with optional additional extensions such as NEON)), including the instruction(s) described herein. In one embodiment, the processor core 1090 includes logic to support a packed data instruction set extension (e.g., AVX1, AVX2, AVX512), thereby allowing the operations used by many multimedia applications or high-performance compute applications, including homomorphic encryption applications, to be performed using packed or vector data types.
The processor core 1090 of
In some embodiments, the register architecture 1200 includes writemask/predicate registers 1215. For example, in some embodiments, there are 8 writemask/predicate registers (sometimes called k0 through k7) that are each 16-bit, 32-bit, 64-bit, or 128-bit in size. Writemask/predicate registers 1215 may allow for merging (e.g., allowing any set of elements in the destination to be protected from updates during the execution of any operation) and/or zeroing (e.g., zeroing vector masks allow any set of elements in the destination to be zeroed during the execution of any operation). In some embodiments, each data element position in a given writemask/predicate register 1215 corresponds to a data element position of the destination. In other embodiments, the writemask/predicate registers 1215 are scalable and consists of a set number of enable bits for a given vector element (e.g., 8 enable bits per 64-bit vector element).
The register architecture 1200 includes a plurality of general-purpose registers 1225. These registers may be 16-bit, 32-bit, 64-bit, etc. and can be used for scalar operations. In some embodiments, these registers are referenced by the names RAX, RBX, RCX, RDX, RBP, RSI, RDI, RSP, and R8 through R15.
In some embodiments, the register architecture 1200 includes scalar floating-point register 1245 which is used for scalar floating-point operations on 32/64/80-bit floating-point data using the x87 instruction set extension or as MMX registers to perform operations on 64-bit packed integer data, as well as to hold operands for some operations performed between the MMX and XMM registers.
One or more flag registers 1240 (e.g., EFLAGS, RFLAGS, etc.) store status and control information for arithmetic, compare, and system operations. For example, the one or more flag registers 1240 may store condition code information such as carry, parity, auxiliary carry, zero, sign, and overflow. In some embodiments, the one or more flag registers 1240 are called program status and control registers.
Segment registers 1220 contain segment points for use in accessing memory. In some embodiments, these registers are referenced by the names CS, DS, SS, ES, FS, and GS.
Machine specific registers (MSRs) 1235 control and report on processor performance. Most MSRs 1235 handle system related functions and are not accessible to an application program. Machine check registers 1260 consist of control, status, and error reporting MSRs that are used to detect and report on hardware errors.
One or more instruction pointer registers 1230 store an instruction pointer value. Control register(s) 1255 (e.g., CR0-CR4) determine the operating mode of a processor and the characteristics of a currently executing task. Debug registers 1250 control and allow for the monitoring of a processor or core's debugging operations.
Memory management registers 1265 specify the locations of data structures used in protected mode memory management. These registers may include a GDTR, IDRT, task register, and a LDTR register.
Alternative embodiments use wider or narrower registers and can also use more, less, or different register files and registers.
Instruction(s) described herein may be embodied in different formats. Additionally, exemplary systems, architectures, and pipelines are detailed below. Embodiments of the instruction(s) may be executed on such systems, architectures, and pipelines, but are not limited to those detailed.
The prefix(es) field(s) 1301, when used, modifies an instruction. In some embodiments, one or more prefixes are used to repeat string instructions (e.g., 0xF0, 0xF2, 0xF3, etc.), to provide section overrides (e.g., 0x2E, 0x36, 0x3E, 0x26, 0x64, 0x65, 0x2E, 0x3E, etc.), to perform bus lock operations, and/or to change operand (e.g., 0x66) and address sizes (e.g., 0x67). Certain instructions require a mandatory prefix (e.g., 0x66, 0xF2, 0xF3, etc.). Certain of these prefixes may be considered “legacy” prefixes. Other prefixes, one or more examples of which are detailed herein, indicate, and/or provide further capability, such as specifying particular registers, etc. The other prefixes typically follow the “legacy” prefixes.
The opcode field 1303 is used to at least partially define the operation to be performed upon a decoding of the instruction. In some embodiments, a primary opcode encoded in the opcode field 1303 is 1, 2, or 3 bytes in length. In other embodiments, a primary opcode can be a different length. An additional 3-bit opcode field is sometimes encoded in another field.
The addressing field 1305 is used to address one or more operands of the instruction, such as a location in memory or one or more registers.
The content of the MOD field 1442 distinguishes between memory access and non-memory access modes. In some embodiments, when the MOD field 1442 has a value of b11, a register-direct addressing mode is utilized, and otherwise register-indirect addressing is used.
The register field 1444 may encode either the destination register operand or a source register operand or may encode an opcode extension and not be used to encode any instruction operand. The content of register index field 1444, directly or through address generation, specifies the locations of a source or destination operand (either in a register or in memory). In some embodiments, the register field 1444 is supplemented with an additional bit from a prefix (e.g., prefix 1301) to allow for greater addressing.
The R/M field 1446 may be used to encode an instruction operand that references a memory address or may be used to encode either the destination register operand or a source register operand. Note the R/M field 1446 may be combined with the MOD field 1442 to dictate an addressing mode in some embodiments.
The SIB byte 1404 includes a scale field 1452, an index field 1454, and a base field 1456 to be used in the generation of an address. The scale field 1452 indicates scaling factor. The index field 1454 specifies an index register to use. In some embodiments, the index field 1454 is supplemented with an additional bit from a prefix (e.g., prefix 1301) to allow for greater addressing. The base field 1456 specifies a base register to use. In some embodiments, the base field 1456 is supplemented with an additional bit from a prefix (e.g., prefix 1301) to allow for greater addressing. In practice, the content of the scale field 1452 allows for the scaling of the content of the index field 1454 for memory address generation (e.g., for address generation that uses 2scale*index+base).
Some addressing forms utilize a displacement value to generate a memory address. For example, a memory address may be generated according to 2scale*index+base+displacement, index*scale+displacement, r/m+displacement, instruction pointer (RIP/EIP)+displacement, register+displacement, etc. The displacement may be a 1-byte, 2-byte, 4-byte, etc. value. In some embodiments, a displacement field 1307 provides this value. Additionally, in some embodiments, a displacement factor usage is encoded in the MOD field of the addressing field 1305 that indicates a compressed displacement scheme for which a displacement value is calculated by multiplying disp8 in conjunction with a scaling factor N that is determined based on the vector length, the value of a b bit, and the input element size of the instruction. The displacement value is stored in the displacement field 1307.
In some embodiments, an immediate field 1309 specifies an immediate for the instruction. An immediate may be encoded as a 1-byte value, a 2-byte value, a 4-byte value, etc.
Instructions using the first prefix 1301(A) may specify up to three registers using 3-bit fields depending on the format: 1) using the reg field 1444 and the R/M field 1446 of the Mod R/M byte 1402; 2) using the Mod R/M byte 1402 with the SIB byte 1404 including using the reg field 1444 and the base field 1456 and index field 1454; or 3) using the register field of an opcode.
In the first prefix 1301(A), bit positions 7:4 are set as 0100. Bit position 3 (W) can be used to determine the operand size but may not solely determine operand width. As such, when W=0, the operand size is determined by a code segment descriptor (CS.D) and when W=1, the operand size is 64-bit.
Note that the addition of another bit allows for 16 (24) registers to be addressed, whereas the MOD R/M reg field 1444 and MOD R/M R/M field 1446 alone can each only address 8 registers.
In the first prefix 1301(A), bit position 2 (R) may an extension of the MOD R/M reg field 1444 and may be used to modify the ModR/M reg field 1444 when that field encodes a general-purpose register, a 64-bit packed data register (e.g., a SSE register), or a control or debug register. R is ignored when Mod R/M byte 1402 specifies other registers or defines an extended opcode.
Bit position 1 (X) X bit may modify the SIB byte index field 1454.
Bit position B (B) B may modify the base in the Mod R/M R/M field 1446 or the SIB byte base field 1456; or it may modify the opcode register field used for accessing general purpose registers (e.g., general-purpose registers 1225).
In some embodiments, the second prefix 1301(B) comes in two forms—a two-byte form and a three-byte form. The two-byte second prefix 1301(B) is used mainly for 128-bit, scalar, and some 256-bit instructions; while the three-byte second prefix 1301(B) provides a compact replacement of the first prefix 1301(A) and 3-byte opcode instructions.
Instructions that use this prefix may use the Mod R/M R/M field 1446 to encode the instruction operand that references a memory address or encode either the destination register operand or a source register operand.
Instructions that use this prefix may use the Mod R/M reg field 1444 to encode either the destination register operand or a source register operand, be treated as an opcode extension and not used to encode any instruction operand.
For instruction syntax that support four operands, vvvv, the Mod R/M R/M field 1446, and the Mod R/M reg field 1444 encode three of the four operands. Bits[7:4] of the immediate 1309 are then used to encode the third source register operand.
Bit[7] of byte 2 1717 is used similar to W of the first prefix 1301(A) including helping to determine promotable operand sizes. Bit[2] is used to dictate the length (L) of the vector (where a value of 0 is a scalar or 128-bit vector) and a value of 1 is a 256-bit vector). Bits[1:0] provide opcode extensionality equivalent to some legacy prefixes (e.g., 00=no prefix, 01=66H, 10=F3H, and 11=F2H). Bits[6:3], shown as vvvv, may be used to: 1) encode the first source register operand, specified in inverted (1s complement) form and valid for instructions with 2 or more source operands; 2) encode the destination register operand, specified in 1s complement form for certain vector shifts; or 3) not encode any operand, the field is reserved and should contain a certain value, such as 1111b.
Instructions that use this prefix may use the Mod R/M R/M field 1446 to encode the instruction operand that references a memory address or encode either the destination register operand or a source register operand.
Instructions that use this prefix may use the Mod R/M reg field 1444 to encode either the destination register operand or a source register operand, be treated as an opcode extension and not used to encode any instruction operand.
For instruction syntax that support four operands, vvvv, the Mod R/M R/M field 1446, and the Mod R/M reg field 1444 encode three of the four operands. Bits[7:4] of the immediate 1309 are then used to encode the third source register operand.
The third prefix 1301(C) can encode 32 vector registers (e.g., 128-bit, 256-bit, and 512-bit registers) in 64-bit mode. In some embodiments, instructions that utilize a writemask/opmask (see discussion of registers in a previous figure, such as
The third prefix 1301(C) may encode functionality that is specific to instruction classes (e.g., a packed instruction with “load+op” semantic can support embedded broadcast functionality, a floating-point instruction with rounding semantic can support static rounding functionality, a floating-point instruction with non-rounding arithmetic semantic can support “suppress all exceptions” functionality, etc.).
The first byte of the third prefix 1301(C) is a format field 1811 that has a value, in one example, of 0x62, which is a unique value that identifies a vector friendly instruction format. Subsequent bytes are referred to as payload bytes 1815, 1817, 1819 and collectively form a 24-bit value of P[23:0] providing specific capability in the form of one or more fields (detailed herein).
In some embodiments, P[1:0] of payload byte 1819 are identical to the low two mmmmm bits. P[3:2] are reserved in some embodiments. Bit P[4] (R′) allows access to the high 16 vector register set when combined with P[7] and the ModR/M reg field 1444. P[6] can also provide access to a high 16 vector register when SIB-type addressing is not needed. P[7:5] consist of an R, X, and B which are operand specifier modifier bits for vector register, general purpose register, memory addressing and allow access to the next set of 8 registers beyond the low 8 registers when combined with the ModR/M register field 1444 and ModR/M R/M field 1446. P[9:8] provide opcode extensionality equivalent to some legacy prefixes (e.g., 00=no prefix, 01=0x66, 10=0xF3, and 11=0xF2). P[10] in some embodiments is a fixed value of 1. P[14:11], shown as vvvv, may be used to: 1) encode the first source register operand, specified in inverted (is complement) form and valid for instructions with 2 or more source operands; 2) encode the destination register operand, specified in is complement form for certain vector shifts; or 3) not encode any operand, the field is reserved and should contain a certain value, such as 1111b.
P[15] is similar to W of the first prefix 1301(A) and second prefix 1301(B) and may serve as an opcode extension bit or operand size promotion.
P[18:16] specify the index of a register in the opmask (writemask) registers (e.g., writemask/predicate registers 1215). In one embodiment of the invention, the specific value aaa=000 has a special behavior implying no opmask is used for the particular instruction (this may be implemented in a variety of ways including the use of a opmask hardwired to all ones or hardware that bypasses the masking hardware). When merging, vector masks allow any set of elements in the destination to be protected from updates during the execution of any operation (specified by the base operation and the augmentation operation); in other one embodiment, preserving the old value of each element of the destination where the corresponding mask bit has a 0. In contrast, when zeroing vector masks allow any set of elements in the destination to be zeroed during the execution of any operation (specified by the base operation and the augmentation operation); in one embodiment, an element of the destination is set to 0 when the corresponding mask bit has a 0 value. A subset of this functionality is the ability to control the vector length of the operation being performed (that is, the span of elements being modified, from the first to the last one); however, it is not necessary that the elements that are modified be consecutive. Thus, the opmask field allows for partial vector operations, including loads, stores, arithmetic, logical, etc. While embodiments of the invention are described in which the opmask field's content selects one of a number of opmask registers that contains the opmask to be used (and thus the opmask field's content indirectly identifies that masking to be performed), alternative embodiments instead or additional allow the mask write field's content to directly specify the masking to be performed.
P[19] can be combined with P[14:11] to encode a second source vector register in a non-destructive source syntax which can access an upper 16 vector registers using P[19]. P[20] encodes multiple functionalities, which differs across different classes of instructions and can affect the meaning of the vector length/rounding control specifier field (P[22:21]). P[23] indicates support for merging-writemasking (e.g., when set to 0) or support for zeroing and merging-writemasking (e.g., when set to 1).
Exemplary embodiments of encoding of registers in instructions using the third prefix 1301(C) are detailed in the following tables.
Program code may be applied to input instructions to perform the functions described herein and generate output information. The output information may be applied to one or more output devices, in known fashion. For purposes of this application, a processing system includes any system that has a processor, such as, for example, a digital signal processor (DSP), a microcontroller, an application specific integrated circuit (ASIC), or a microprocessor.
The program code may be implemented in a high-level procedural or object-oriented programming language to communicate with a processing system. The program code may also be implemented in assembly or machine language, if desired, as the mechanisms described herein are not limited in scope to any particular programming language. Additionally, the language may be a compiled or interpreted language.
The mechanisms disclosed herein may be implemented in hardware, software, firmware, or a combination of such implementation approaches. Embodiments of the invention may be implemented as computer programs or program code executing on programmable systems comprising at least one processor, a storage system (including volatile and non-volatile memory and/or storage elements), at least one input device, and at least one output device.
In some cases, an instruction converter may be used to convert an instruction from a source instruction set to a target instruction set. For example, the instruction converter may translate (e.g., using static binary translation, dynamic binary translation including dynamic compilation), morph, emulate, or otherwise convert an instruction to one or more other instructions to be processed by the core. The instruction converter may be implemented in software, hardware, firmware, or a combination thereof. The instruction converter may be on processor, off processor, or part on and part off processor.
One or more aspects of at least one embodiment may be implemented by representative code stored on a machine-readable medium which represents and/or defines logic within an integrated circuit such as a processor. For example, the machine-readable medium may include instructions which represent various logic within the processor. When read by a machine, the instructions may cause the machine to fabricate the logic to perform the techniques described herein. Such representations, known as “IP cores,” are reusable units of logic for an integrated circuit that may be stored on a tangible, machine-readable medium as a hardware model that describes the structure of the integrated circuit. The hardware model may be supplied to various customers or manufacturing facilities, which load the hardware model on fabrication machines that manufacture the integrated circuit. The integrated circuit may be fabricated such that the circuit performs operations described in association with any of the embodiments described herein.
The RTL design 2015 or equivalent may be further synthesized by the design facility into a hardware model 2020, which may be in a hardware description language (HDL), or some other representation of physical design data. The HDL may be further simulated or tested to verify the IP core design. The IP core design can be stored for delivery to a 3rd party fabrication facility 2065 using non-volatile memory 2040 (e.g., hard disk, flash memory, or any non-volatile storage medium). Alternatively, the IP core design may be transmitted (e.g., via the Internet) over a wired connection 2050 or wireless connection 2060. The fabrication facility 2065 may then fabricate an integrated circuit that is based at least in part on the IP core design. The fabricated integrated circuit can be configured to perform operations in accordance with at least one embodiment described herein.
In some embodiments, the units of logic 2072, 2074 are electrically coupled with a bridge 2082 that is configured to route electrical signals between the logic 2072, 2074. The bridge 2082 may be a dense interconnect structure that provides a route for electrical signals. The bridge 2082 may include a bridge substrate composed of glass or a suitable semiconductor material. Electrical routing features can be formed on the bridge substrate to provide a chip-to-chip connection between the logic 2072, 2074.
Although two units of logic 2072, 2074 and a bridge 2082 are illustrated, embodiments described herein may include more or fewer logic units on one or more dies. The one or more dies may be connected by zero or more bridges, as the bridge 2082 may be excluded when the logic is included on a single die. Alternatively, multiple dies or units of logic can be connected by one or more bridges. Additionally, multiple logic units, dies, and bridges can be connected in other possible configurations, including three-dimensional configurations.
In various embodiments a package assembly 2090 can include components and chiplets that are interconnected by a fabric 2085 and/or one or more bridges 2087. The chiplets within the package assembly 2090 may have a 2.5D arrangement using Chip-on-Wafer-on-Substrate stacking in which multiple dies are stacked side-by-side on a silicon interposer 2089 that couples the chiplets with the substrate 2080. The substrate 2080 includes electrical connections to the package interconnect 2083. In one embodiment the silicon interposer 2089 is a passive interposer that includes through-silicon vias (TSVs) to electrically couple chiplets within the package assembly 2090 to the substrate 2080. In one embodiment, silicon interposer 2089 is an active interposer that includes embedded logic in addition to TSVs. In such embodiment, the chiplets within the package assembly 2090 are arranged using 3D face to face die stacking on top of the silicon interposer 2089. The silicon interposer 2089, when an active interposer, can include hardware logic for I/O 2091, cache memory 2092, and other hardware logic 2093, in addition to interconnect fabric 2085 and a silicon bridge 2087. The fabric 2085 enables communication between the various logic chiplets 2072, 2074 and the logic 2091, 2093 within the silicon interposer 2089. The fabric 2085 may be an NoC (Network on Chip) interconnect or another form of packet switched fabric that switches data packets between components of the package assembly. For complex assemblies, the fabric 2085 may be a dedicated chiplet enables communication between the various hardware logic of the package assembly 2090.
Bridge structures 2087 within the silicon interposer 2089 may be used to facilitate a point-to-point interconnect between, for example, logic or I/O chiplets 2074 and memory chiplets 2075. In some implementations, bridge structures 2087 may also be embedded within the substrate 2080. The hardware logic chiplets can include special purpose hardware logic chiplets 2072, logic or I/O chiplets 2074, and/or memory chiplets 2075. The hardware logic chiplets 2072 and logic or I/O chiplets 2074 may be implemented at least partly in configurable logic or fixed-functionality logic hardware and can include one or more portions of any of the processor core(s), graphics processor(s), parallel processors, or other accelerator devices described herein. The memory chiplets 2075 can be DRAM (e.g., GDDR, HBM) memory or cache (SRAM) memory. Cache memory 2092 within the silicon interposer 2089 (or substrate 2080) can act as a global cache for the package assembly 2090, part of a distributed global cache, or as a dedicated cache for the fabric 2085.
Each chiplet can be fabricated as separate semiconductor die and coupled with a base die that is embedded within or coupled with the substrate 2080. The coupling with the substrate 2080 can be performed via an interconnect structure 2073. The interconnect structure 2073 may be configured to route electrical signals between the various chiplets and logic within the substrate 2080. The interconnect structure 2073 can include interconnects such as, but not limited to bumps or pillars. In some embodiments, the interconnect structure 2073 may be configured to route electrical signals such as, for example, input/output (I/O) signals and/or power or ground signals associated with the operation of the logic, I/O and memory chiplets. In one embodiment, an additional interconnect structure couples the silicon interposer 2089 with the substrate 2080.
In some embodiments, the substrate 2080 is an epoxy-based laminate substrate. The substrate 2080 may include other suitable types of substrates in other embodiments. The package assembly 2090 can be connected to other electrical devices via a package interconnect 2083. The package interconnect 2083 may be coupled to a surface of the substrate 2080 to route electrical signals to other electrical devices, such as a motherboard, other chipset, or multi-chip module.
In some embodiments, a logic or I/O chiplet 2074 and a memory chiplet 2075 can be electrically coupled via a bridge 2087 that is configured to route electrical signals between the logic or I/O chiplet 2074 and a memory chiplet 2075. The bridge 2087 may be a dense interconnect structure that provides a route for electrical signals. The bridge 2087 may include a bridge substrate composed of glass or a suitable semiconductor material. Electrical routing features can be formed on the bridge substrate to provide a chip-to-chip connection between the logic or I/O chiplet 2074 and a memory chiplet 2075. The bridge 2087 may also be referred to as a silicon bridge or an interconnect bridge. For example, the bridge 2087, in some embodiments, is an Embedded Multi-die Interconnect Bridge (EMIB). In some embodiments, the bridge 2087 may simply be a direct connection from one chiplet to another chiplet.
In one embodiment, SRAM and power delivery circuits can be fabricated into one or more of the base chiplets 2096, 2098, which can be fabricated using a different process technology relative to the interchangeable chiplets 2095 that are stacked on top of the base chiplets. For example, the base chiplets 2096, 2098 can be fabricated using a larger process technology, while the interchangeable chiplets can be manufactured using a smaller process technology. One or more of the interchangeable chiplets 2095 may be memory (e.g., DRAM) chiplets. Different memory densities can be selected for the package assembly 2094 based on the power, and/or performance targeted for the product that uses the package assembly 2094. Additionally, logic chiplets with a different number of type of functional units can be selected at time of assembly based on the power, and/or performance targeted for the product, Additionally, chiplets containing IP logic cores of differing types can be inserted into the interchangeable chiplet slots, enabling hybrid processor designs that can mix and match different technology IP blocks.
References herein to “one embodiment,” “an embodiment,” “an example embodiment,” etc., indicate that the embodiment described may include a particular feature, structure, or characteristic, but every embodiment may not necessarily include the particular feature, structure, or characteristic. Moreover, such phrases are not necessarily referring to the same embodiment. Further, when a particular feature, structure, or characteristic is described in connection with an embodiment, it is submitted that it is within the knowledge of one skilled in the art to affect such feature, structure, or characteristic in connection with other embodiments whether explicitly described.
In the various embodiments described above, unless specifically noted otherwise, disjunctive language such as the phrase “at least one of A, B, or C” is intended to be understood to mean either A, B, or C, or any combination thereof (e.g., A, B, and/or C). As such, disjunctive language is not intended to, nor should it be understood to, imply that a given embodiment requires at least one of A, at least one of B, or at least one of C to each be present.
The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense. Those skilled in the art will appreciate that the broad techniques of the embodiments described herein can be implemented in a variety of forms. Therefore, while the embodiments have been described in connection with examples thereof, the true scope of the embodiments should not be so limited since other modifications will become apparent to the skilled practitioner upon a study of the drawings, specification, and following claims.