HomeSort by relevance Sort by last modified time
    Searched refs:operator (Results 101 - 125 of 504) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/specs/python/
specs_lib.py 22 import operator
98 return Operator(operator.add, self, g)
101 return Operator(operator.mul, self, g)
124 class Operator(Composable):
125 """A wrapper for an operator.
127 This takes an operator and an argument list and returns
128 the result of applying the operator to the results of applying
144 This overloads the regular __call__ operator for currying, i.e.
    [all...]
  /external/tensorflow/tensorflow/python/ops/linalg/
adjoint_registrations.py 47 return linop.operator
93 operator.adjoint() for operator in block_diag_operator.operators],
107 operator.adjoint() for operator in kronecker_operator.operators],
inverse_registrations.py 46 return linop_inversion.operator
84 operator.inverse() for operator in block_diag_operator.operators],
98 operator.inverse() for operator in kronecker_operator.operators],
  /external/python/uritemplates/uritemplate/
variable.py 53 #: The operator for the variable
54 self.operator = ''
77 - operator,
85 self.operator = self.original[0]
88 if self.operator in URIVariable.operators[:2]:
125 self.start = self.join_str = self.operator
126 if self.operator == '+':
128 if self.operator in ('+', '#', ''):
130 if self.operator == '#':
132 if self.operator == '?'
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkRefUtilImpl.inl 8 void Deleter<VkDeviceMemory>::operator() (VkDeviceMemory obj) const
14 void Deleter<VkFence>::operator() (VkFence obj) const
20 void Deleter<VkSemaphore>::operator() (VkSemaphore obj) const
26 void Deleter<VkEvent>::operator() (VkEvent obj) const
32 void Deleter<VkQueryPool>::operator() (VkQueryPool obj) const
38 void Deleter<VkBuffer>::operator() (VkBuffer obj) const
44 void Deleter<VkBufferView>::operator() (VkBufferView obj) const
50 void Deleter<VkImage>::operator() (VkImage obj) const
56 void Deleter<VkImageView>::operator() (VkImageView obj) const
62 void Deleter<VkShaderModule>::operator() (VkShaderModule obj) cons
    [all...]
  /external/python/cpython3/Lib/ctypes/test/
test_slicing.py 49 from operator import setitem
76 import operator
77 self.assertRaises(ValueError, operator.getitem,
79 self.assertRaises(ValueError, operator.getitem,
81 self.assertRaises(ValueError, operator.getitem,
83 self.assertRaises(ValueError, operator.getitem,
86 self.assertRaises(TypeError, operator.setitem,
143 import operator
144 self.assertRaises(TypeError, operator.setitem,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
analyze_dxp.py 25 import operator
92 result.sort(key=operator.itemgetter(2), reverse=True)
112 result.sort(key=operator.itemgetter(2), reverse=True)
  /external/python/cpython2/Tools/scripts/
analyze_dxp.py 26 import operator
93 result.sort(key=operator.itemgetter(2), reverse=True)
113 result.sort(key=operator.itemgetter(2), reverse=True)
  /external/python/cpython3/Tools/scripts/
analyze_dxp.py 25 import operator
92 result.sort(key=operator.itemgetter(2), reverse=True)
112 result.sort(key=operator.itemgetter(2), reverse=True)
  /external/tensorflow/tensorflow/python/ops/ragged/
ragged_operators.py 15 """Operator overloads for `RaggedTensor`."""
27 def _right(operator):
28 """Right-handed version of an operator: swap args x and y."""
29 return tf_decorator.make_decorator(operator, lambda y, x: operator(x, y))
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/jcajce/
JcaRespID.java 11 import org.bouncycastle.operator.DigestCalculator;
  /external/icu/tools/
ziputil.py 24 from operator import attrgetter
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
  /external/tensorflow/tensorflow/contrib/solvers/python/ops/
linear_equations.py 33 def conjugate_gradient(operator,
45 `operator`. The iteration terminates when either the number of iterations
50 operator: An object representing a linear operator with attributes:
52 length 2. `shape[0]` is the dimension on the domain of the operator,
53 `shape[1]` is the dimension of the co-domain of the operator. On other
54 words, if operator represents an N x N matrix A, `shape` must contain
58 vector with the result of applying the operator to `x`, i.e. if
59 `operator` represents matrix `A`, `apply` should return `A * x`.
61 preconditioner: An object representing a linear operator, see `operator
    [all...]
  /external/tensorflow/tensorflow/python/autograph/converters/
logical_expressions.py 75 def _has_matching_func(self, operator):
76 op_type = type(operator)
79 def _matching_func(self, operator):
80 op_type = type(operator)
  /external/fonttools/Lib/fontTools/misc/
arrayTools.py 11 import operator
159 return Vector(self._vectorOp(other, operator.add), keep=True)
161 self.values = self._vectorOp(other, operator.add)
166 return Vector(self._vectorOp(other, operator.sub), keep=True)
168 self.values = self._vectorOp(other, operator.sub)
174 return Vector(self._scalarOp(other, operator.mul), keep=True)
176 self.values = self._scalarOp(other, operator.mul)
181 return Vector(self._scalarOp(other, operator.div), keep=True)
183 self.values = self._scalarOp(other, operator.div)
187 return Vector(self._unaryOp(operator.pos), keep=True
    [all...]
  /external/fonttools/Lib/fontTools/pens/
recordingPen.py 18 for operator,operands in recording:
19 getattr(pen, operator)(*operands)
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInfoGenerator.java 19 import org.bouncycastle.operator.ContentSigner;
20 import org.bouncycastle.operator.DefaultDigestAlgorithmIdentifierFinder;
21 import org.bouncycastle.operator.DigestAlgorithmIdentifierFinder;
22 import org.bouncycastle.operator.DigestCalculator;
23 import org.bouncycastle.operator.DigestCalculatorProvider;
24 import org.bouncycastle.operator.OperatorCreationException;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
JcaContentVerifierProviderBuilder.java 1 package org.bouncycastle.operator.jcajce;
21 import org.bouncycastle.operator.ContentVerifier;
22 import org.bouncycastle.operator.ContentVerifierProvider;
23 import org.bouncycastle.operator.OperatorCreationException;
24 import org.bouncycastle.operator.RawContentVerifier;
25 import org.bouncycastle.operator.RuntimeOperatorException;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
fractions.py 10 import operator
282 operator and a function from the operator module.
285 __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)
393 __add__, __radd__ = _operator_fallbacks(_add, operator.add)
401 __sub__, __rsub__ = _operator_fallbacks(_sub, operator.sub)
407 __mul__, __rmul__ = _operator_fallbacks(_mul, operator.mul)
414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
415 __div__, __rdiv__ = _operator_fallbacks(_div, operator.div)
574 return a._richcmp(b, operator.lt)
    [all...]

Completed in 471 milliseconds

1 2 3 45 6 7 8 91011>>