同步操作将从 PaddlePaddle/Paddle 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.import itertoolsimport numpy as npimport refrom .linalg import dot, matmul, transposefrom .manipulation import squeeze, unsqueeze, reshapefrom .math import multiplyfrom .math import sum as paddle_sumfrom paddle.common_ops_import import dygraph_only__all__ = []def parse_op_labels(labelstr, operand):'''Parse labels for an input operand.Parameters----------labelstr:the input label stringoperand:the input operandReturns-------the input operand's full label string in which all anonymous dimensions arelabeled in dots.'''# Sanity checksfor c in labelstr.replace('.', ''):assert c.isalpha(), (f"Invalid equation: {c} is not a valid label, which should be letters.")assert labelstr.replace('...', '', 1).find('.') == -1, (f"Invalid equation: `.` is found outside of an ellipsis.")# Check shape. Note, in Paddle a tensor rank is always nonzerondims = len(operand.shape)assert ndims > 0full_labelstr = labelstr.replace('...', '.' * (ndims - len(labelstr) + 3))assert len(full_labelstr) == ndims, (f"Invalid equation: the label string '{labelstr}' misses dimensions.")return full_labelstrdef parse_labels(labelstr, operands):'''Parse label strings for all input operands.Parameters----------labelstr:The equation's label stringoperands:The input operandsReturns-------list of full label strings for all input operands'''nop_labels = labelstr.split(',')assert len(nop_labels) == len(operands), (f"Invalid equation: the number of operands is {len(operands)}, "f"but found {len(nop_labels)} segments in the label equation.")return list(map(parse_op_labels, nop_labels, operands))def validate_rhs(rhs, input_labels, n_bcast_dims):'''Check whether the equation's right hand side is valid'''# Sanity check.if n_bcast_dims > 0:assert '...' in rhs, (f"Invalid equation: missing ellipsis in output labels.")rhs = rhs.replace('...', '')rhs_set = set(rhs)# Hidden assumption: availble labels don't include '.'assert '.' not in input_labels# Verify that output labels all come from the set of input labelsnon_input_labels = rhs_set.difference(input_labels)assert not non_input_labels, (f"Invalid equation: "f"output label {sorted(non_input_labels)} not used by any input.")# Verify that output labels are not duplicateassert len(rhs) == len(rhs_set), (f"Invalid equation: duplicate output labels are found.")def build_view(in_labels, out_labels):'''Build an inverse map of dimension indices. Three conditions must hold forthe result to be meaningful.First, no duplicate letter labels in each label string.Second, the number of dots in dimout_labels >= that in in_labels.Third, dots are contiguous in each label string.Parameters----------in_labels:The dimension labels to map toout_labels:The dimension labels to map fromReturns-------The inverse map from out_labels to in_labels. The length of the inverse map equals that ofout_labels. -1 is filled if there's no matching intput dimension for a specific label.Examples--------in_labels = 'ij..', out_labels = '..ji'inv_map = [2, 3, 1, 0]in_labels = 'ij..', out_labels = '..kji'inv_map = [2, 3, -1, 1, 0]'''inv_map = [-1] * len(out_labels)# First build the broadcast dimension mapping# Find the broadcast index range in out_labelsr = re.search(r'\.+', out_labels)if r:start, end = r.start(), r.end()s = re.search(r'\.+', in_labels)# fill the broadcast dimension indices from right to left.if s:for ax, dim in zip(range(start, end)[::-1], range(s.start(), s.end())[::-1]):inv_map[ax] = dim# Now work on non-broadcast dimensionsif r:it = itertools.chain(range(start), range(end, len(out_labels)))else:it = iter(range(len(out_labels)))for i in it:inv_map[i] = in_labels.find(out_labels[i])return inv_mapdef build_global_view(nop_labels, rhs, n_bcast_dims):'''Build the global view, which is a layout of all dimension labelsplus an index table that maps from the layout to the dimensionsin each operand. In the global view, the dimensions are arrangedsuch that output ones are put on the left and contraction onesare put on the right.Parameters----------nop_labels:The input full label strings of all input operandsrhs:The equation right hand siden_bcast_dims:The maxium number of broadcast dimensionsReturns-------A tuple of g_labels, g_view, g_nout, g_countg_labels:the layout of all labels in a stringg_view:the index tableg_nout:the number of output dimensionsg_count:the counter array for dimension contractions'''# Put all labels in alphabetical orderconcat = sorted(''.join(nop_labels).replace('.', ''))labels, count = [], []for a, b in zip(['.'] + concat, concat):if a != b:labels.append(b)count.append(1)else:count[-1] += 1if rhs != None:validate_rhs(rhs, labels, n_bcast_dims)g_labels_out = rhs.replace('...', '.' * n_bcast_dims)else:g_labels_out = '.' * n_bcast_dims + ''.join(l for l, c in zip(labels, count) if c == 1)for i in range(len(count))[::-1]:if labels[i] in g_labels_out:labels.pop(i)count.pop(i)g_labels_sum = ''.join(labels)g_labels = g_labels_out + g_labels_sumg_view = list(map(lambda i: build_view(i, g_labels), nop_labels))g_nout = len(g_labels_out)g_count = countreturn g_labels, g_view, g_nout, g_countdef build_global_shape(g_view, g_labels, op_shapes):'''The global shape is the shape of all dimensions rearranged and broadcastingto the global view. It's a reference data structure for einsum planning.Parameters----------g_view:the global viewop_shapes:the shapes of the all operandsReturns-------g_shape:the global shape vectorg_masks:list of shape masks for each operand. A dimension's shape mask is a booleanindicating whether its size > 1, in other words, it's not squeezable'''view_shapes = []g_masks = []for view, op_shape in zip(g_view, op_shapes):view_shapes.append([op_shape[dim] if dim > -1 else 1 for dim in view])g_shape = [set(sizes_per_ax) - {1} for sizes_per_ax in zip(*view_shapes)]non_bcastable = [ax for ax, sizes in enumerate(g_shape) if len(sizes) > 1]assert not non_bcastable, (f"Invalid operands: label {g_labels[non_bcastable[0]]} "f"corresponds to non-broadcastable dimensions.")g_shape = [sizes.pop() if len(sizes) > 0 else 1 for sizes in g_shape]g_masks = [[s > 1 or s == -1 for s in view_shape]for view_shape in view_shapes]return g_shape, g_masksdef has_duplicated_labels(labels):'''Returns True if there is any duplicate label.'''labels = labels.replace('.', '')return len(labels) > len(set(labels))def diagonalize(labels, operand):'''Merges dimensions with duplicate labels.For those dimensions with duplicate labels, merge them into one dimensionwhich represents the diagonal elements. This requires the dimensions withduplicate labels are equal sized.Examples--------'ijj...i' would be merged into 'ij...''''assert not has_duplicated_labels(labels), (f'Duplicate labels are not supported.')return labels, operanddef plan_reduce(plan, op, reduce_dims, keepdim):'''Add reduce to the plan'''varname = f'op{op}'f = lambda var, dims: paddle_sum(var, dims, keepdim=keepdim)step = f, [varname], varname, reduce_dimsplan.add_step(step)def plan_scalar_prod(plan, op1, op2):varnames = [f'op{op1}', f'op{op2}']f = lambda var1, var2: paddle_sum(var1) * var2# f = lambda var1, var2: var1 * var2step = f, varnames, varnames[1]plan.add_step(step)def plan_matmul(plan, g_view, op1, op2, g_supports, g_shape, I, J1, J2, K):'''plan matmul'''# Transpose and re-shape op1 and op2 in I, J1, K and I, J2, K# Then apply matmul(x, y, transpose_x=False, tranpose_y=True)var1, var2 = f'op{op1}', f'op{op2}'op1_view, op2_view = [g_view[op] for op in (op1, op2)]I1 = [idx for idx in I if op1_view[idx] >= 0]I2 = [idx for idx in I if op2_view[idx] >= 0]op1_view = np.array(op1_view)op1_dims = op1_view[I1 + J1 + K]op2_view = np.array(op2_view)op2_dims = op2_view[I2 + J2 + K]op1_mask, op2_mask = [g_supports[op] for op in (op1, op2)]op1_vshape = np.array([s if m else 1 for s, m in zip(g_shape, op1_mask)])op2_vshape = np.array([s if m else 1 for s, m in zip(g_shape, op2_mask)])vshape = np.maximum(op1_vshape, op2_vshape)i1, i2, j1, j2, k = map(len, (I1, I2, J1, J2, K))if any(op1_dims != np.arange(len(op1_dims))):# print(f'perm1: {perm1}')step = transpose, [var1], var1, list(op1_dims)plan.add_step(step)if any(op2_dims != np.arange(len(op2_dims))):# print(f'perm2: {perm2}')step = transpose, [var2], var2, list(op2_dims)plan.add_step(step)# Check if conditions hold for turnning the operation into a matmulif j1 + j2 > 0 and k > 0 and -1 not in np.concatenate((op1_vshape, op2_vshape)):op1_shape = list(op1_vshape[I]) + [np.prod(op1_vshape[J1])] + [np.prod(op1_vshape[K])]op2_shape = list(op2_vshape[I]) + [np.prod(op2_vshape[J2])] + [np.prod(op2_vshape[K])]# Merge J dims and K dims by reshapingstep = reshape, [var1], var1, op1_shapeplan.add_step(step)step = reshape, [var2], var2, op2_shapeplan.add_step(step)# Matmulstep = matmul, [var1, var2], var2, False, Trueplan.add_step(step)# Reshape backshape = list(vshape[I + J1 + J2])step = reshape, [var2], var2, shapeplan.add_step(step)elif j1 == j2 == k == 1:# Can still do matmul even unknown shapes are presentstep = matmul, [var1, var2], var2, False, Trueplan.add_step(step)# In the rest cases we opt for ops other than matmulelse:# unsqueeze operands include J1...J2... dimensionsif j2:fill = list(range(i1 + j1, i1 + j1 + j2))step = unsqueeze, [var1], var1, fillplan.add_step(step)if j1:fill = list(range(i2, i2 + j1))step = unsqueeze, [var2], var2, fillplan.add_step(step)# In case of no dimensions to contract, do an elementwise multiplyif k == 0:# make broadcaststep = multiply, [var1, var2], var2plan.add_step(step)# Contract and no join, turn into a dotelif j1 + j2 == 0 and k == 1:step = unsqueeze, [var1], var1, [-2]plan.add_step(step)step = unsqueeze, [var2], var2, [-1]plan.add_step(step)step = matmul, [var1, var2], var2plan.add_step(step)step = squeeze, [var2], var2, [-1, -2]plan.add_step(step)elif j1 + j2 == 0 and not-1 in np.concatenate((op1_vshape[K], op2_vshape[K])):assert all(op1_vshape[K] == op2_vshape[K])step = reshape, [var1], var1, list(op1_vshape[I]) + [1] + [np.prod(op1_vshape[K])]plan.add_step(step)step = reshape, [var2], var2, list(op2_vshape[I]) + [1] + [np.prod(op2_vshape[K])]plan.add_step(step)step = matmul, [var1, var2], var2, False, Trueplan.add_step(step)step = squeeze, [var2], var2, [-1, -2]plan.add_step(step)else:step = multiply, [var1, var2], var2plan.add_step(step)reduce_dims = list(range(-k, 0))plan_reduce(plan, op2, reduce_dims, keepdim=False)# Wrap up, updating auxiliary data# Updating g_mask for I and J axesfor ax in I + J1 + J2:op2_mask[ax] = vshape[ax] > 1 or vshape[ax] == -1for ax in K:op2_mask[ax] = Falsefor ax in range(len(op2_view)):op2_view[ax] = -1dim = 0for ax in I + J1 + J2:op2_view[ax], dim = dim, dim + 1g_view[op2] = list(op2_view)def plan_summation(plan, g_view, op1, op2, g_supports, g_shape, g_count,n_bcast):'''Plan various kinds of summation'''op1_view, op2_view = g_view[op1], g_view[op2]op1_mask, op2_mask = g_supports[op1], g_supports[op2]ndim = len(op1_view)nout = ndim - len(g_count)count = [0] * nout + g_countI, K, J1, J2 = list(range(n_bcast)), [], [], []for ax, dim1, dim2 in zip(range(n_bcast, ndim), op1_view[n_bcast:], op2_view[n_bcast:]):if (dim1 != -1) != (dim2 != -1):if dim1 != -1:J1.append(ax)else:J2.append(ax)elif dim1 != -1:fold = int(op1_mask[ax]) + int(op2_mask[ax])if ax >= nout and fold == count[ax]:# Ready to fold the dimensionsK.append(ax)count[ax] -= foldelse:I.append(ax)count[ax] -= max(fold - 1, 0)# Update g_countg_count[:] = count[nout:]# Now it's OK to merge the K dims as the same shape holds# print(f'I: {I} J1: {J1} J2: {J2} K: {K}')plan_matmul(plan, g_view, op1, op2, g_supports, g_shape, I, J1, J2, K)def rearrange(axes):perm, fill = [], []for ax, dim in enumerate(axes):if dim < 0:fill.append(ax)else:perm.append(dim)# Trivial permutation returns []if all(i == dim for i, dim in enumerate(perm)):perm = []return perm, filldef plan_broadcast(plan, operands, nop_axes):'''Plan broadcast across'''nop = len(operands)varnames = [f'op{i}' for i in range(nop)]for i, op_axes in zip(range(nop), nop_axes):# Re-arrange the dimesions according to the global layoutperm, fill = rearrange(op_axes)var = varnames[i]if perm:step = transpose, [var], var, permplan.add_step(step)if fill:step = unsqueeze, [var], var, fillplan.add_step(step)def f(*args):expr = ' * '.join(varnames)return eval(expr, dict(zip(varnames, args)))step = f, varnames, Noneplan.add_step(step)class Plan:def __init__(self):self.env = {}self.steps = []def add_step(self, step):self.steps.append(step)def get_var(self, varname):return self.env[varname] if varname in self.env else Nonedef set_var(self, varname, var):self.env[varname] = vardef show(self):res = Nonefor f, in_varnames, out_varname, *args in self.steps:print(repr((out_varname, f, *in_varnames, *args)))return resdef execute(self):res = Nonefor f, in_varnames, out_varname, *args in self.steps:res = f(*map(self.get_var, in_varnames), *args)if out_varname:self.set_var(out_varname, res)return resdef plan_einsum(operands, g_view, g_shape, g_supports, g_count, n_bcast):'''Plans the actual execution steps.Results-------the execution plan'''nop = len(operands)ndim = len(g_view[0])nout = ndim - len(g_count)# Initialize a plan with an environmentplan = Plan()op_names = [f'op{i}' for i in range(nop)]list(map(plan.set_var, op_names, operands))# In case no dimensions to combine, do broadcast straight acrossif not g_count:plan_broadcast(plan, operands, g_view)return plan# Down count degenerate contraction dimensions.for view, support in zip(g_view, g_supports):# To collect the down count number, we use a type casting trickdown_count = [int((d + 1) and (not s))for d, s in zip(view[nout:], support[nout:])]for i, count in enumerate(down_count):g_count[i] -= count# Reduce any dimension for which g_support is set and g_count == 1for i, view, mask in zip(range(nop), g_view, g_supports):to_reduce = []for dim, masked, count in zip(view[nout:], mask[nout:], g_count):to_reduce.append(dim if (masked and count == 1) else -1)reduce_dims = list(filter(lambda x: x > -1, to_reduce))if reduce_dims:plan_reduce(plan, i, reduce_dims, keepdim=True)# Unset mask and decrease g_count for the reduced dimensionsfor i, d in enumerate(to_reduce):ax = i + noutmask[ax] = mask[ax] and (d == -1)g_count[i] -= 0 if d == -1 else 1# Plan the summations over the operand sequencefor i in range(nop):# plan a single stepif i == 0:continue# We'd like to arrange the dimensions in the following way:# [I... J... K...]# [I... J... K...]# where# I... are aligned and not to be combined immediately# J... are not aligned and not to be combined immediately# K... are aligned and should be immediately combined# At this point the non-trivial broadcast dimensinos in K are already reduced# and removed. That means all K dimensions are aligned and their sizes are not 1.# We then inspect the layout of I,J,K plus the above observation to make# specializatoin decisions. The current strategy is set as follows:# (1) if I... J... K... are all empty, it's multiplying a scalar# (2) if K... are empty, better use a broadcast# (3) if I... J... empty and K... not empty, a vector-vector multiply (or a dot)# (4) Elsewise, either I... or J... not empty, and K... not empty, use a general matmul# Resolve the summation kind: dot, matmul or *if not any(g_supports[i - 1]):# op1 is a one element tensor.plan_scalar_prod(plan, i - 1, i)else:plan_summation(plan, g_view, i - 1, i, g_supports, g_shape, g_count,n_bcast)# for ax, dim in enumerate(g_view[nop-1][:nout]):# assert dim == axassert all(not masked for masked in g_supports[nop - 1][nout:])view = g_view[-1]if any(ax != dim for ax, dim in enumerate(view[:nout])):perm = [dim for dim in view if dim >= 0]if sorted(perm) != perm:varname = f'op{nop-1}'step = transpose, [varname], varname, permplan.add_step(step)dim = 0unsqueeze_dims = []for ax, d in enumerate(view):if d != -1:view[ax], dim = dim, dim + 1for ax, d in enumerate(view[:nout]):if d == -1:unsqueeze_dims.append(ax)if unsqueeze_dims:varname = f'op{nop-1}'step = unsqueeze, [varname], varname, unsqueeze_dimsplan.add_step(step)squeeze_dims = [dim for dim in view[nout:] if dim != -1]if squeeze_dims:# plan_reduce(plan, nop-1, reduce_dims, keepdim=False)varname = f'op{nop-1}'step = squeeze, [varname], varname, squeeze_dimsplan.add_step(step)return plandef einsum(equation, *operands):r"""einsum(equation, *operands)The current version of this API should be used in dygraph only mode.Einsum offers a tensor operation API which allows using the Einstein summationconvention or Einstain notation. It takes as input one or multiple tensors andproduces as output one tensor.Einsum is able to perform a variety of tensor operations. Following lists a few:- for single operand- trace- diagonal- transpose- sum- for double operands- dot- outer- broadcasting and elementwise multiply- matrix multiply- batched matrix multiply- for many operads- broadcasting multiply- chained matrix multiply**The summation notation**- The tensor dimensions are labeled using uncased English letters. E.g., `ijk`relates to a three dimensional tensor whose dimensions are labeled i, j, and k.- The equation is `,` separated into terms, each being a distinct input'sdimension label string.- Ellipsis `...` enables broadcasting by automatically converting the unlabeleddimensions into broadcasting dimensions.- Singular labels are called free labels, duplicate are dummy labels. Dummy labeleddimensions will be reduced and removed in the output.- Output labels can be explicitly specified on the right hand side of `->` or omitted.In the latter case, the output labels will be inferred from the input labels.- Inference of output labels- Broadcasting label `...`, if present, is put on the leftmost position.- Free labels are reordered alphabetically and put after `...`.- On explicit output labels- If broadcasting is enabled, then `...` must be present.- The output labels can be an empty, an indication to output as a scalarthe sum over the original output.- Non-input labels are invalid.- Duplicate labels are invalid.- For any dummmy label which is present for the output, it's promoted toa free label.- For any free label which is not present for the output, it's lowered toa dummy label.- Examples- '...ij, ...jk', where i and k are free labels, j is dummy. The output labelstring is '...ik'- 'ij -> i', where i is a free label and j is a dummy label.- '...ij, ...jk -> ...ijk', where i, j and k are all free labels.- '...ij, ...jk -> ij', an invalid equation since `...` is not present forthe output.**The summation rule**The summation procedure can be outlined as follows, although the actual steps takenmay vary significantly due to implementation specific optimization.- Step 1: preparation for broadcasting, that is, transposing and unsqueezingthe input operands to have each resulting dimension identically labeled acrossall the input operands.- Step 2: broadcasting multiply all the resulting operands from step 1.- Step 3: reducing dummy labeled dimensions.- Step 4: transposing the result tensor to match the output labels.**On trace and diagonal**The trace and diagonal are planned yet unimplemented features.Args:equation (`str`):The summation terms using the Einstein summation notation.operands (`list|Tensor`):The input tensors over which to compute the Einstein summation. The number ofoperands should equal the number of input terms in the equation.Returns:result (`Tensor`): the result tensor.Examples:.. code-block:: pythonimport paddlepaddle.seed(102)x = paddle.rand([4])y = paddle.rand([5])# sumprint(paddle.einsum('i->', x))# Tensor(shape=[], dtype=float32, place=CUDAPlace(0), stop_gradient=True,# 1.95791852)# dotprint(paddle.einsum('i,i->', x, x))# Tensor(shape=[1], dtype=float32, place=CUDAPlace(0), stop_gradient=True,# [1.45936954])# outerprint(paddle.einsum("i,j->ij", x, y))# Tensor(shape=[4, 5], dtype=float32, place=CUDAPlace(0), stop_gradient=True,# [[0.00079869, 0.00120950, 0.00136844, 0.00187187, 0.00192194],# [0.23455200, 0.35519385, 0.40186870, 0.54970956, 0.56441545],# [0.11773264, 0.17828843, 0.20171674, 0.27592498, 0.28330654],# [0.32897076, 0.49817693, 0.56364071, 0.77099484, 0.79162055]])A = paddle.rand([2, 3, 2])B = paddle.rand([2, 2, 3])# transposeprint(paddle.einsum('ijk->kji', A))# Tensor(shape=[2, 3, 2], dtype=float32, place=CUDAPlace(0), stop_gradient=True,# [[[0.95649719, 0.49684682],# [0.80071914, 0.46258664],# [0.49814570, 0.33383518]],## [[0.07637714, 0.29374704],# [0.51470858, 0.51907635],# [0.99066722, 0.55802226]]])# batch matrix multiplicationprint(paddle.einsum('ijk, ikl->ijl', A,B))# Tensor(shape=[2, 3, 3], dtype=float32, place=CUDAPlace(0), stop_gradient=True,# [[[0.32172769, 0.50617385, 0.41394392],# [0.51736701, 0.49921003, 0.38730967],# [0.69078457, 0.42282537, 0.30161136]],## [[0.32043904, 0.18164253, 0.27810261],# [0.50226176, 0.24512935, 0.39881429],# [0.51476848, 0.23367381, 0.39229113]]])# Ellipsis transposeprint(paddle.einsum('...jk->...kj', A))# Tensor(shape=[2, 2, 3], dtype=float32, place=CUDAPlace(0), stop_gradient=True,# [[[0.95649719, 0.80071914, 0.49814570],# [0.07637714, 0.51470858, 0.99066722]],## [[0.49684682, 0.46258664, 0.33383518],# [0.29374704, 0.51907635, 0.55802226]]])# Ellipsis batch matrix multiplicationprint(paddle.einsum('...jk, ...kl->...jl', A,B))# Tensor(shape=[2, 3, 3], dtype=float32, place=CUDAPlace(0), stop_gradient=True,# [[[0.32172769, 0.50617385, 0.41394392],# [0.51736701, 0.49921003, 0.38730967],# [0.69078457, 0.42282537, 0.30161136]],## [[0.32043904, 0.18164253, 0.27810261],# [0.50226176, 0.24512935, 0.39881429],# [0.51476848, 0.23367381, 0.39229113]]])"""nop = len(operands)assert nop > 0, "At least one operand is expected."# Part the equation to left hand side and right hand sidelhs, *rhs = equation.lower().replace(' ', '').split('->')assert len(rhs) < 2, "Invalid equation: multiple `->` were found."# Note, we distinguish between 'ij->' and 'ij' by setting rhs to '' and Nonerhs = rhs[0] if rhs else None# Parse labels for each operand and count the number of occurrences for each alphabet labelnop_labels = parse_labels(lhs, operands)# Diagonalize the operands which have duplicate labelsnop_labels, operands = list(zip(*map(diagonalize, nop_labels, operands)))# To handle broadcasting, we should first know how many dimensions are there# We need to use that number to generate output labels# e.g. 1 for ['ij', 'i.', '.k']n_bcast_dims = max(map(lambda s: s.count('.'), nop_labels))# Build the data structures for planning. It's helpful to think of all the operands# broadcasting together from a global view. In this view, dimensions from multiple# operands are mapped to the same position if they are labeled uniquely. Broadcasting# dimensions are mapped to adjacent positions with the right bound fixed. Subject to# each operand, the map is injective but for all operands the map is on-to.# g_labels:# The labels of the global view# g_view:# Includes a list of maps from each operand's dimensions to the global view's dimensions# which we refer to as ax or axes in the code to distinguish from operand's dims# g_shape:# The shape of the global view. The size of each dimension is what the aligned dimensions# should broadcast to# g_nout:# Number of output axes# g_supports# Booleans indicating each operand's non-trivial dimensions# g_count# Counting how many non-trivial dimensions remain for each axg_labels, g_view, g_nout, g_count = build_global_view(nop_labels, rhs,n_bcast_dims)g_shape, g_supports = build_global_shape(g_view, g_labels,[op.shape for op in operands])# Now we're ready to build up an execution planargs = operands, g_view, g_shape, g_supports, g_count, n_bcast_dimsplan = plan_einsum(*args)result = plan.execute()return result
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。