Embodiments generally relate to machine learning. More particularly, embodiments relate to deep learning technology that minimizes the negative impact of cache conflicts caused by incompatible leading dimensions in matrix multiplication and convolution kernels without dimension padding.
Deep learning workloads may involve matrix-based multiplication and convolution operations, where matrix data is stored to cache memory for rapid retrieval. Certain combinations of cache layouts and matrix sizes, however, may result in the matrix data being evicted from the cache while still in use. As a result, a negative impact on performance may be encountered.
The various advantages of the embodiments will become apparent to one skilled in the art by reading the following specification and appended claims, and by referencing the following drawings, in which:
Applications such as image recognition and natural language processing (NLP) may use deep learning technology, which is a subset of artificial intelligence (AI) machine learning where a deep neural network contains multiple intermediate layers to conduct unsupervised learning from data that is unstructured or unlabeled. Due to the relatively large amounts of data involved in deep neural networks, the data may typically be organized and processed as n-dimensional arrays (e.g., tensors), which may be further partitioned into matrices. In such a case, common matrix operations may include matrix multiplication operations (e.g., “matmul” via a General Matrix Multiply/GEMM kernel), convolution operations, and so forth.
For example, a typical matrix operation might be the following matrix multiply operation:
c[m][n]=a[m][k]*b[k][n].
Where c is the output matrix (having a size of m rows by n columns), b is the input matrix (having a size if k rows by n columns, e.g., representing pixels of an image or the output of a previous layer), a is a set of weights (having a size of k rows by n columns) to be applied to the input matrix, and all of the matrixes are row-major (e.g., rows are stored contiguously in memory). In general, in the case of row-major order, the “leading dimension” for a two-dimensional array is an increment that is used to find the starting point for the matrix elements in each successive row of the array. Thus, k may be considered the leading dimension of matrix a and n may be considered the leading dimension of matrix b, in this example.
The matrices may be partitioned (e.g., for deployment to different processor cores). For example, after the partition each computation core might compute a subset of matrix c:
C[M][N]=A[M][K]*B[K][N],LDA=k,LDB=n,LDC=n.
Where LDA is the leading dimension of subset matrix A, LDB is the leading dimension of subset matrix B, and LDC is the leading dimension of subset matrix C. For the purposes of discussion, it may be assumed that K and N are the size of a hardware vector V for the target hardware (e.g., graphics processor, host processor, accelerator). For example, the hardware vector might be a 64-byte or 16-dword vector on a given host processor (e.g., central processing unit/CPU with Advanced Vector Extensions/AVX 512 support). As will be discussed in greater detail, the dimension size of M may be automatically controlled to a relatively small value that is limited by the number of hardware vector registers.
For example,
For example, if the cache 22 has a total size of 32 kB (32768 bytes) and a cache line size of 64 bytes, the cache 22 would contain 512 lines (32768 bytes/64 bytes=512 lines). Additionally, if the cache 22 is structured as an 8-way set associative cache, the number of sets would be 64 (512 lines/8 ways=64 sets). If the length of leading dimension is a multiple or factor number of sets*cache line size, the leading dimension may cause cache line conflicts. For example, despite the 8-way set associativity, addresses with same remainder of modulo 4096 (number of sets*cache line size=64*64=4096 bytes or 4 kB) are mapped to same cache line. Thus, if the leading dimension size is 256 bytes (eight bits, or 28=256 bytes) for floating point instructions to (“float”) data types (e.g., element-size is 4), the length of the leading dimension will be 256 bytes*4=1024 bytes. Each fourth element of strided access along the outer dimension will have conflict cache line (1024 bytes*4 elements=4096 bytes). If the length of the leading dimension is 1024 bytes, every successive loading of the outer dimension will repeatedly load and evict the same cache line. This behavior may have a significant negative impact on deep learning performance.
By contrast, an enhanced matrix caching solution 40 controls the M dimension to be less than or equal to the number of ways in the cache 22. Accordingly, the first element 26 maps to a different cache line 44 (“Line i+x”) than the cache line 30 to which the second element 28 maps. As a result, the cache conflict is avoided and performance is enhanced, in the illustrated example.
Inside a GEMM kernel (e.g., a predefined subroutine that a math library may call to perform matrix multiplication in a nested fashion), a small matmul may be computed as below:
C[M][V]+=A[M][V]*B[V][V],LDA=k,LDB=n,LDC=n
A common method to compute the partitioned matrix multiply with vectorization register optimization is shown in the pseudo code below:
Based on the aforementioned common structure of the GEMM kernel, on a system with Whw-way set-associative cache, cache conflicts may occur when M>Whw, where Whw is a fixed number (e.g., eight) on a specified hardware system. Accordingly, cache conflicts may be avoided by introducing a restriction of M<=Whw, as already noted.
There may be side-effects, however, of limiting the size of M. First, there may be an impact on instruction latency. For example, a fused-multiply-and-accumulation (FMA) operation may typically have multiple cycles of latency (e.g., thirteen). Thus, a greater M helps to hide the FMA latency.
Another side-effect may be related to memory bandwidth pressure. More particularly, M determines the number of times that matrix B is reused. Thus, the greater the value of M, the more times matrix B will be reused. Essentially, this condition impacts the ratio between arithmetic floating point instructions and memory read instructions (e.g., FP Arith/Mem Rd Instructions Ratio or “FP A/R” ratio). A higher FP A/R ratio saves the cost of duplicated memory loading, which again mitigates the pressure on the cache system and improves the efficiency of memory load bandwidth. Both of these two considerations may be solved by introducing an additional reuse dimension, as will be discussed in greater detail.
For example, computer program code to carry out operations shown in the method 60 may be written in any combination of one or more programming languages, including an object oriented programming language such as JAVA, SMALLTALK, C++ or the like and conventional procedural programming languages, such as the “C” programming language or similar programming languages. Additionally, logic instructions might include assembler instructions, instruction set architecture (ISA) instructions, machine instructions, machine dependent instructions, microcode, state-setting data, configuration data for integrated circuitry, state information that personalizes electronic circuitry and/or other structural components that are native to hardware (e.g., host processor, central processing unit/CPU, microcontroller, etc.).
Illustrated processing block 62 provides for determining a ratio of floating point instructions to memory read instructions. Block 62 may include calculating the number of multiply and add operations per each load just before kernel execution (e.g., in real-time). Block 64 controls a dimension size (e.g., M) of a matrix kernel based at least in part on the ratio. In an embodiment, the dimension size is controlled to prevent a cache conflict. The illustrated method 60 therefore enhances performance by ensuring that an acceptable FP A/R is maintained despite the potential side-effects of controlling the dimension size of the maintenance kernel. Fewer cache conflicts may translate into less latency and improved deep learning results (e.g., shorter training times).
The matrix kernel may generally conduct an operation (e.g., multiplication operation, convolution operation) between a first matrix (e.g., matrix A) and a second matrix (e.g., matrix B). In such a case, the method 60 may further provide for reusing elements of the first matrix for multiple vector lines of the second matrix, as will be discussed in greater detail. If it is determined that a portion of the first matrix exceeds the number of ways (e.g., degree of associativity) in a set-associative cache (e.g., an overflow condition is present), block 64 may conduct an inline copy of the overflow portion in response to the overflow condition. In one example, block 64 controls the dimension size further based on a hardware constraint and/or a latency constraint.
The illustrated method 60 is also advantageous over conventional solutions that may attempt to deal with cache conflicts by performing dimension padding. For example, dimension padding solutions may pad the leading dimension to prevent the length from being a multiple of 128 B or 256 B. Normally, such an approach might add or subtract the dimension length by the size of one cache line. In deep learning (DL) workloads with DL frameworks, however, (e.g., as opposed to high performance computing/HPC workloads lacking), the shape of the tensor is a setting that is typically a fixed and agreed upon between the framework provider and the end user (e.g., customer). In addition to the performance penalty, the padded tensor generally cannot be handled by the framework provider and the end user directly, which again impacts the usability or user-experience for data scientists. Additional padding is also not a widely accepted solution because it may involve additional reordering in deep learning frameworks.
The illustrated method 60 is also advantageous over conventional solutions that may attempt to deal with cache conflicts by copying the GEMM kernel. Such solutions may apply dimension padding inside the GEMM kernel. Thus, instead of padding the entire tensor, the kernel might copy and pad a subset of data that will be handled by the current thread. Copy-GEMM kernel solutions may move the copy overhead to GEMM kernel, but the performance penalty still exists.
Turning now to
C[M][Z*V]=A[M][V]*B[V][Z*V],LDA=k,LDB=n,LDC=n
In the illustrated example, a vector load of B[_k][0] is conducted (e.g., with B[V][V], LDB=n) and a scalar load of A[_m][_k] is conducted (e.g., A[M][V], LDA=k). Thus, with Z>1, the transposed matrix 50 is reused multiple times, where the number of reads to the transposed matrix 50 may cause cache conflicts to be reduced to 1/Z. The new model to reducing cache-conflicts and improving FP A/R ratio involves loading two vectors 54, 56 of another matrix 58 and conducting two FMA operations for each element 53 of the transposed matrix 50. The illustrated solution therefore reduces the number of loads for the transposed matrix 50 by half. The illustrated solution also doubles the density of FMAs and increases the FP A/R ratio.
Example pseudo code to implement the enhanced solution is described as below:
C[W][V]=A[W][V]*B[V][V],LDA=k,LDB=n,LDC=n
C[M−W][V]=A′[M][V]*B[V][V],LDA=V,LDB=n,LDC=n
An optimized version of the inlined copy-GEMM kernel, with leading dimension optimization, is described by the example pseudo code blow:
The above technology to 1) use the FP A/R ratio to control the number of successive loads of matrix A, 2) conduct bilateral buffer reuse, and 3) conduct inline copies, may be combined together to further enhance performance and avoid the leading dimension issue. A fully parameterized GEMM kernel with bilateral buffer reuse may then be decided by dimension size of a single GEMM kernel, given the hardware vector size Vhw. Recall the matrix multiplication of
c[m][n]=a[m][k]*b[k][n].
Assuming row-major GEMM, M is number of lines in the GEMM kernel output matrix, Z is the vector size of columns of the GEMM kernel output matrix. The kernel of each small matrix multiplication may be decided by:
C[M][Z*Vhw]=A[M][Vhw]*B[Vhw][Z*Vhw].
In an embodiment, the restrictions on parameters M and Z are:
1) Hardware register restriction: Based on the computing model described herein, one register is used to load matrix A, Z registers are used to load matrix B and M*Z registers are used to save the output of matrix C. Assuming a total of Rhw registers, to avoid register spill, the restrictions may be given by,
(M+1)*Z+1≤Rhw
2) Hardware latency requirement: There may be a minimal number of pipelined vectorized FMAs Lhw to hide the FMA latency.
M*Z>L
hw
3) FP A/R ratio: Number of multiply and add per each load can be calculated by
This restriction suggests that to achieve highest FP A/R ratio R, Z may be chosen to be as close as possible to M.
Based on these restrictions, the values of M and Z may be automatically selected within a few operations. For any GEMM/convolution with sufficient computation usage, the ideal M and Z may be first determined based on these restrictions. For example, in the case of thirty-two HW registers, (M,Z)=(6,4) would be the initial configuration. If there is insufficient computation (e.g., the dimension size is not large enough to saturate the core computation resources) or the dimension n is to be split further (e.g., the per-core n, i.e., N, is smaller than four), a sub-optimum solution, (M,Z)=(14,2) for example, may be used. Moreover, for any selected M, the overflow part M>priori_ratio*Whw of matrix B is inline copied to a side buffer. The priori_ratio may be an empiric value based on algorithm selection on specific hardware (e.g., 0.8).
With the selected Z and M, the GEMM kernel may be automatically accelerated by bilateral buffer reuse to improve FP A/R ratio and avoid cache conflicts by reduced memory access. Further, in the case of M≤Whw, the solution avoids the cache-conflict issue by fully exploiting the capacity of a multi-way set-associative cache system caused by incompatible leading dimensions. Additionally, if M>Whw, the solution avoids the leading dimension issue with the inline copy.
Illustrated processing block 82 determines whether a bad/incompatible leading dimension has been encountered. If not, block 84 selects a normal kernel (e.g., to perform a standard matrix multiply or convolution operation). Otherwise, block 86 determines initial (e.g., “optimum”) values for parameters M and Z based on hardware (HW) restrictions and the FP A/R ratio. A determination may then be made at block 88 as to whether the value of Z is acceptable for task balancing (e.g., between available cores). If not, other (e.g., “sub-optimum”) values are selected at block 90 for parameters M and Z, and the method 80 returns to block 88. Once it is determined at block 88 that the value of Z is acceptable for task balancing, block 92 may set the kernel parameters to the values of M and Z.
Block 94 determines whether the value of M exceeds the number of ways (e.g., degree of associativity) in the cache. If so, an overflow-copy kernel is selected (e.g., to perform an inline copy of the overflow portion) at block 96 with the current values of M and Z. Otherwise, a non-copy kernel is selected (e.g., to bypass the inline copy) at block 98 with the current values of M and Z. The illustrated method 80 therefore enhances performance by ensuring that an acceptable FP A/R is maintained while obviating the potential side-effects of controlling the dimension size of the maintenance kernel. Fewer cache conflicts may translate into less latency and improved deep learning results (e.g., shorter training times).
(m,k,n)=(10752,1024,1024),shape curve 122
(m,k,n)=(1764,1024,3072),shape curve 124
(m,k,n)=(42,4096,1024),shape curve 126
For each shape, four different configurations of the parameters (M,Z) were applied, with the performance data being measured on a single socket of a processor.
(M,Z)=(28,1),configuration A
(M,Z)=(14,2),configuration B
(M,Z)=(7,2),configuration C
(M,Z)=(6,4),configuration D
In the case of an incompatible leading dimension, GEMM efficiency was relatively low in configuration A (M,Z)=(28,1), which was subjected to the cache conflicts issue. By setting Z=2 for bilateral reuse in configuration B, performance improved by ˜2x, using the same FMA pipeline length as configuration A. Configuration B still suffered, however, from the issue of cache conflicts since 14 was greater than the number of ways (8) of set-associative cache. By limiting the length of M to smaller than 8 in configuration C, an unexpected additional ˜20% benefit was achieved with (M,Z)=(7, 2), even with the pipeline lengths being reduced by half. Finally, for a shape with sufficient computations configuration D of (M,Z)=(6, 4) provided a greater FP A/R ratio, and therefore better performance. For the smallest shape curve 126 (e.g., m was not large enough for task allocation), the sub-optimum solution of (M,Z)=(7, 2) was even faster because the n dimension was used for thread level parallelism.
Turning now to
The illustrated system 150 also includes an input output (IO) module 158 implemented together with the host processor 152 and a graphics processor 160 on a semiconductor die 162 as a system on chip (SoC). The illustrated IO module 158 communicates with, for example, a display 164 (e.g., touch screen, liquid crystal display/LCD, light emitting diode/LED display), a network controller 166 (e.g., wired and/or wireless NIC), and mass storage 168 (e.g., hard disk drive/HDD, optical disk, solid state drive/SSD, flash memory).
In an embodiment, the host processor 152 includes logic 170 (e.g., executable logic instructions, configurable logic, fixed-functionality hardware logic, etc., or any combination thereof) to perform one or more aspects of the method 60 (
The matrix kernel may generally conduct an operation (e.g., multiplication operation, convolution operation) between a first matrix and a second matrix. In such a case, the logic 170 may further provide for reusing elements of the first matrix for multiple vector lines of the second matrix. If it is determined that a portion of the first matrix exceeds the number of ways in the cache 172 (e.g., an overflow condition is present), the logic 170 may also conduct an inline copy of the overflow portion in response to the overflow condition. In one example, the logic 170 controls the dimension size further based on a hardware constraint and/or a latency constraint. While the logic 170 is shown in the host processor 152, the logic 170 may reside elsewhere in the system 150.
The logic 186 may be implemented at least partly in configurable logic or fixed-functionality hardware logic. In one example, the logic 186 includes transistor channel regions that are positioned (e.g., embedded) within the substrate(s) 184. Thus, the interface between the logic 186 and the substrate(s) 184 may not be an abrupt junction. The logic 186 may also be considered to include an epitaxial layer that is grown on an initial wafer of the substrate(s) 184.
The processor core 200 is shown including execution logic 250 having a set of execution units 255-1 through 255-N. Some embodiments may include a number of execution units dedicated to specific functions or sets of functions. Other embodiments may include only one execution unit or one execution unit that can perform a particular function. The illustrated execution logic 250 performs the operations specified by code instructions.
After completion of execution of the operations specified by the code instructions, back end logic 260 retires the instructions of the code 213. In one embodiment, the processor core 200 allows out of order execution but requires in order retirement of instructions. Retirement logic 265 may take a variety of forms as known to those of skill in the art (e.g., re-order buffers or the like). In this manner, the processor core 200 is transformed during execution of the code 213, at least in terms of the output generated by the decoder, the hardware registers and tables utilized by the register renaming logic 225, and any registers (not shown) modified by the execution logic 250.
Although not illustrated in
Referring now to
The system 1000 is illustrated as a point-to-point interconnect system, wherein the first processing element 1070 and the second processing element 1080 are coupled via a point-to-point interconnect 1050. It should be understood that any or all of the interconnects illustrated in
As shown in
Each processing element 1070, 1080 may include at least one shared cache 1896a, 1896b. The shared cache 1896a, 1896b may store data (e.g., instructions) that are utilized by one or more components of the processor, such as the cores 1074a, 1074b and 1084a, 1084b, respectively. For example, the shared cache 1896a, 1896b may locally cache data stored in a memory 1032, 1034 for faster access by components of the processor. In one or more embodiments, the shared cache 1896a, 1896b may include one or more mid-level caches, such as level 2 (L2), level 3 (L3), level 4 (L4), or other levels of cache, a last level cache (LLC), and/or combinations thereof.
While shown with only two processing elements 1070, 1080, it is to be understood that the scope of the embodiments are not so limited. In other embodiments, one or more additional processing elements may be present in a given processor. Alternatively, one or more of processing elements 1070, 1080 may be an element other than a processor, such as an accelerator or a field programmable gate array. For example, additional processing element(s) may include additional processors(s) that are the same as a first processor 1070, additional processor(s) that are heterogeneous or asymmetric to processor a first processor 1070, accelerators (such as, e.g., graphics accelerators or digital signal processing (DSP) units), field programmable gate arrays, or any other processing element. There can be a variety of differences between the processing elements 1070, 1080 in terms of a spectrum of metrics of merit including architectural, micro architectural, thermal, power consumption characteristics, and the like. These differences may effectively manifest themselves as asymmetry and heterogeneity amongst the processing elements 1070, 1080. For at least one embodiment, the various processing elements 1070, 1080 may reside in the same die package.
The first processing element 1070 may further include memory controller logic (MC) 1072 and point-to-point (P-P) interfaces 1076 and 1078. Similarly, the second processing element 1080 may include a MC 1082 and P-P interfaces 1086 and 1088. As shown in
The first processing element 1070 and the second processing element 1080 may be coupled to an I/O subsystem 1090 via P-P interconnects 10761086, respectively. As shown in
In turn, I/O subsystem 1090 may be coupled to a first bus 1016 via an interface 1096. In one embodiment, the first bus 1016 may be a Peripheral Component Interconnect (PCI) bus, or a bus such as a PCI Express bus or another third generation I/O interconnect bus, although the scope of the embodiments are not so limited.
As shown in
Note that other embodiments are contemplated. For example, instead of the point-to-point architecture of
Example 1 includes a performance-enhanced computing system comprising a network controller and a processor coupled to the network controller, wherein the processor includes a cache and logic to determine a ratio of floating point instructions to memory read instructions and control a dimension size of a matrix kernel based at least in part on the ratio.
Example 2 includes the computing system of Example 1, wherein the matrix kernel is to conduct an operation between a first matrix and a second matrix, and wherein the logic coupled to the one or more substrates is to reuse elements of the first matrix for multiple vector lines of the second matrix.
Example 3 includes the computing system of Example 2, wherein the cache is a set-associative cache, and wherein the logic is to detect an overflow condition, wherein the overflow condition includes a portion of the first matrix exceeding a number of ways in the set-associative cache, and conduct an inline copy of the portion in response to the overflow condition.
Example 4 includes the computing system of Example 2, wherein the operation is one of a multiplication operation or a convolution operation.
Example 5 includes the computing system of any one of Examples 1 to 4, wherein the dimension size is controlled further based on a hardware constraint and a latency constraint.
Example 6 includes the computing system of any one of Examples 1 to 4, wherein the dimension size is controlled to prevent a conflict in the cache.
Example 7 includes a semiconductor apparatus comprising one or more substrates, and logic coupled to the one or more substrates, wherein the logic is to implemented at least partly in one or more of configurable logic or fixed-functionality hardware logic, the logic coupled to the one or more substrates to determine a ratio of floating point instructions to memory read instructions, and control a dimension size of a matrix kernel based at least in part on the ratio.
Example 8 includes the semiconductor apparatus of Example 7, wherein the matrix kernel is to conduct an operation between a first matrix and a second matrix, and wherein the logic coupled to the one or more substrates is to reuse elements of the first matrix for multiple vector lines of the second matrix.
Example 9 includes the semiconductor apparatus of Example 8, further including a set-associative cache, wherein the logic coupled to the one or more substrates is to detect an overflow condition, wherein the overflow condition includes a portion of the first matrix exceeding a number of ways in the set-associative cache, and conduct an inline copy of the portion in response to the overflow condition.
Example 10 includes the semiconductor apparatus of Example 8, wherein the operation is one of a multiplication operation or a convolution operation.
Example 11 includes the semiconductor apparatus of any one of Examples 7 to 10, wherein the dimension size is controlled further based on a hardware constraint and a latency constraint.
Example 12 includes the semiconductor apparatus of any one of Examples 7 to 10, wherein the dimension size is controlled to prevent a cache conflict.
Example 13 includes at least one computer readable storage medium comprising a set of executable program instructions, which when executed by a computing system, cause the computing system to determine a ratio of floating point instructions to memory read instructions, and control a dimension size of a matrix kernel based at least in part on the ratio.
Example 14 includes the at least one computer readable storage medium of Example 13, wherein the matrix kernel is to conduct an operation between a first matrix and a second matrix, and wherein the instructions, when executed, further cause the computing system to reuse elements of the first matrix for multiple vector lines of the second matrix.
Example 15 includes the at least one computer readable storage medium of Example 14, wherein the instructions, when executed, further cause the computing system to detect an overflow condition, wherein the overflow condition includes a portion of the first matrix exceeding a number of ways in a set-associative cache, and conduct an inline copy of the portion in response to the overflow condition.
Example 16 includes the at least one computer readable storage medium of Example 14, wherein the operation is one of a multiplication operation or a convolution operation.
Example 17 includes the at least one computer readable storage medium of any one of Examples 13 to 16, wherein the dimension size is controlled further based on a hardware constraint and a latency constraint.
Example 18 includes the at least one computer readable storage medium of any one of Examples 13 to 16, wherein the dimension size is controlled to prevent a cache conflict.
Example 19 includes a method of operating a performance-enhanced computing system, the method comprising determining a ratio of floating point instructions to memory read instructions, and controlling a dimension size of a matrix kernel based at least in part on the ratio.
Example 20 includes the method of Example 19, wherein the matrix kernel conducts an operation between a first matrix and a second matrix, and wherein the method further includes reusing elements of the first matrix for multiple vector lines of the second matrix.
Example 21 includes the method of Example 20, further including detecting an overflow condition, wherein the overflow condition includes a portion of the first matrix exceeding a number of ways in a set-associative cache, and conducting an inline copy of the portion in response to the overflow condition.
Example 22 includes the method of Example 21, wherein the number of ways defines a degree of associativity for the set-associative cache.
Example 23 includes the method of Example 20, wherein the operation is one of a multiplication operation or a convolution operation.
Example 24 includes the method of any one of Examples 19 to 23, wherein the dimension size is controlled further based on a hardware constraint and a latency constraint.
Example 25 includes the method of any one of Examples 19 to 23, wherein the dimension size is controlled to prevent a cache conflict.
Example 26 includes means for performing the method of any one of Examples 19 to 25.
Thus, technology described herein may impose zero changes to the user data/model (e.g., compared to dimension padding solutions). The technology also comes with improved performance as it saves major memory copy/reorder overhead (e.g., compared to GEMM kernel copying solutions).
Embodiments are applicable for use with all types of semiconductor integrated circuit (“IC”) chips. Examples of these IC chips include but are not limited to processors, controllers, chipset components, programmable logic arrays (PLAs), memory chips, network chips, systems on chip (SoCs), SSD/NAND controller ASICs, and the like. In addition, in some of the drawings, signal conductor lines are represented with lines. Some may be different, to indicate more constituent signal paths, have a number label, to indicate a number of constituent signal paths, and/or have arrows at one or more ends, to indicate primary information flow direction. This, however, should not be construed in a limiting manner. Rather, such added detail may be used in connection with one or more exemplary embodiments to facilitate easier understanding of a circuit. Any represented signal lines, whether or not having additional information, may actually comprise one or more signals that may travel in multiple directions and may be implemented with any suitable type of signal scheme, e.g., digital or analog lines implemented with differential pairs, optical fiber lines, and/or single-ended lines.
Example sizes/models/values/ranges may have been given, although embodiments are not limited to the same. As manufacturing techniques (e.g., photolithography) mature over time, it is expected that devices of smaller size could be manufactured. In addition, well known power/ground connections to IC chips and other components may or may not be shown within the figures, for simplicity of illustration and discussion, and so as not to obscure certain aspects of the embodiments. Further, arrangements may be shown in block diagram form in order to avoid obscuring embodiments, and also in view of the fact that specifics with respect to implementation of such block diagram arrangements are highly dependent upon the platform within which the embodiment is to be implemented, i.e., such specifics should be well within purview of one skilled in the art. Where specific details (e.g., circuits) are set forth in order to describe example embodiments, it should be apparent to one skilled in the art that embodiments can be practiced without, or with variation of, these specific details. The description is thus to be regarded as illustrative instead of limiting.
The term “coupled” may be used herein to refer to any type of relationship, direct or indirect, between the components in question, and may apply to electrical, mechanical, fluid, optical, electromagnetic, electromechanical or other connections. In addition, the terms “first”, “second”, etc. may be used herein only to facilitate discussion, and carry no particular temporal or chronological significance unless otherwise indicated.
As used in this application and in the claims, a list of items joined by the term “one or more of” may mean any combination of the listed terms. For example, the phrases “one or more of A, B or C” may mean A, B, C; A and B; A and C; B and C; or A, B and C.
Those skilled in the art will appreciate from the foregoing description that the broad techniques of the embodiments can be implemented in a variety of forms. Therefore, while the embodiments have been described in connection with particular 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.
Filing Document | Filing Date | Country | Kind |
---|---|---|---|
PCT/CN2019/125599 | 12/16/2019 | WO |