Home
last modified time | relevance | path

Searched defs:op (Results 1 – 25 of 2139) sorted by relevance

12345678910>>...86

/external/tensorflow/tensorflow/python/ops/
Dmath_grad.py39 def _SumGrad(op, grad): argument
67 def _MinOrMaxGrad(op, grad): argument
86 def _MaxGrad(op, grad): argument
92 def _MinGrad(op, grad): argument
97 def _MeanGrad(op, grad): argument
117 def _ProdGrad(op, grad): argument
163 def _SegmentSumGrad(op, grad): argument
169 def _SegmentMeanGrad(op, grad): argument
182 def _SparseSegmentSumGrad(op, grad): argument
191 def _SparseSegmentSumWithNumSegmentsGrad(op, grad): argument
[all …]
Dnn_grad.py34 def _Conv2DBackpropInputGrad(op, grad): argument
67 def _Conv2DBackpropFilterGrad(op, grad): argument
90 def _Conv3DGrad(op, grad): argument
111 def _Conv3DBackpropInputGrad(op, grad): argument
132 def _Conv3DBackpropFilterGrad(op, grad): argument
152 def _AvgPool3DGrad(op, grad): argument
163 def _AvgPool3DGradGrad(op, grad): argument
174 def _MaxPool3DGrad(op, grad): argument
186 def _MaxPool3DGradGrad(op, grad): argument
202 def _MaxPool3DGradGradGrad(op, grad): argument
[all …]
Darray_grad.py37 def _PackGrad(op, grad): argument
43 def _UnpackGrad(op, *grads): argument
48 def _ConcatGradHelper(op, grad, start_value_index, end_value_index, dim_index): argument
214 def _ConcatGrad(op, grad): argument
224 def _ConcatGradV2(op, grad): argument
233 def _SliceGrad(op, grad): argument
258 def _StridedSliceGrad(op, grad): argument
279 def _StridedSliceGradGrad(op, grad): argument
298 def _SplitGrad(op, *grads): argument
303 def _SplitVGrad(op, *grads): argument
[all …]
Dcontrol_flow_util.py31 def IsInXLAContext(op): argument
41 def IsInWhileLoop(op): argument
46 def IsInCond(op): argument
51 def IsSwitch(op): argument
56 def IsLoopEnter(op): argument
61 def IsLoopExit(op): argument
66 def IsLoopSwitch(op): argument
74 def IsLoopConstantEnter(op): argument
88 def GetOutputContext(op): argument
166 def CheckInputFromValidContext(op, input_op): argument
Dlinalg_grad.py39 def _MatrixInverseGrad(op, grad): argument
47 def _MatrixDeterminantGrad(op, grad): argument
59 def _CholeskyGrad(op, grad): argument
85 def _QrGrad(op, dq, dr): argument
115 def _MatrixSolveGrad(op, grad): argument
129 def _MatrixSolveLsGrad(op, grad): argument
138 def _Overdetermined(op, grad): argument
163 def _Underdetermined(op, grad): argument
208 def _MatrixTriangularSolveGrad(op, grad): argument
228 def _SelfAdjointEigV2Grad(op, grad_e, grad_v): argument
[all …]
Dsparse_grad.py37 def _SparseReorderGrad(op, unused_output_indices_grad, output_values_grad): argument
66 def _SparseAddGrad(op, *grads): argument
102 def _SparseTensorDenseAddGrad(op, out_grad): argument
109 def _SparseReduceSumGrad(op, out_grad): argument
122 def _SparseTensorDenseMatMulGrad(op, grad): argument
183 def _SparseDenseCwiseMulOrDivGrad(op, grad, is_mul): argument
218 def _SparseDenseCwiseMulGrad(op, grad): argument
224 def _SparseDenseCwiseDivGrad(op, grad): argument
230 def _SparseSoftmaxGrad(op, grad): argument
275 def _SparseFillEmptyRowsGrad(op, unused_grad_output_indices, output_grad_values, argument
Dtensor_array_grad.py81 def _TensorArrayReadGrad(op, grad): argument
112 def _TensorArrayWriteGrad(op, flow): argument
138 def _TensorArrayGatherGrad(op, grad): argument
169 def _TensorArrayScatterGrad(op, flow): argument
193 def _TensorArrayConcatGrad(op, grad, unused_lengths_grad): argument
225 def _TensorArraySplitGrad(op, flow): argument
/external/vixl/test/
Dtest-operands.cc44 aarch32::Operand op = aarch32::Operand::From(42); in TEST_AARCH32() local
50 aarch32::Operand op = aarch32::Operand::From(-42); in TEST_AARCH32() local
58 aarch32::Operand op = aarch32::Operand::From(-1); in TEST_AARCH32() local
64 aarch32::Operand op = aarch32::Operand::From(UINT32_MAX); in TEST_AARCH32() local
70 aarch32::Operand op = aarch32::Operand::From(INT32_MAX); in TEST_AARCH32() local
76 aarch32::Operand op = aarch32::Operand::From(INT32_MIN); in TEST_AARCH32() local
84 aarch32::Operand op = aarch32::Operand::From(INT64_C(-1)); in TEST_AARCH32() local
90 aarch32::Operand op = aarch32::Operand::From(INT64_C(-42)); in TEST_AARCH32() local
100 aarch32::Operand op = aarch32::Operand::From(&data); in TEST_AARCH32() local
108 aarch32::Operand op = aarch32::Operand::From(data); in TEST_AARCH32() local
/external/tensorflow/tensorflow/core/ops/
Dtraining_ops_test.cc23 static void TestGradAndIndicesErrorHandling(const ShapeInferenceTestOp& op, in TestGradAndIndicesErrorHandling()
46 ShapeInferenceTestOp op("ApplyGradientDescent"); in TEST() local
58 ShapeInferenceTestOp op("ApplyProximalGradientDescent"); in TEST() local
72 ShapeInferenceTestOp op("SparseApplyProximalGradientDescent"); in TEST() local
86 ShapeInferenceTestOp op("ApplyAdadelta"); in TEST() local
106 ShapeInferenceTestOp op("SparseApplyAdadelta"); in TEST() local
128 ShapeInferenceTestOp op("ApplyAdagrad"); in TEST() local
142 ShapeInferenceTestOp op("SparseApplyAdagrad"); in TEST() local
159 ShapeInferenceTestOp op("ApplyProximalAdagrad"); in TEST() local
175 ShapeInferenceTestOp op("SparseApplyProximalAdagrad"); in TEST() local
[all …]
Dio_ops_test.cc25 ShapeInferenceTestOp op("Save"); in TEST() local
45 ShapeInferenceTestOp op("SaveSlices"); in TEST() local
72 ShapeInferenceTestOp op("Restore"); in TEST() local
83 ShapeInferenceTestOp op("RestoreV2"); in TEST() local
103 ShapeInferenceTestOp op("RestoreSlice"); in TEST() local
115 ShapeInferenceTestOp op("ShardedFilename"); in TEST() local
127 ShapeInferenceTestOp op("ShardedFilespec"); in TEST() local
139 ShapeInferenceTestOp op(op_name); in TEST() local
151 ShapeInferenceTestOp op(op_name); in TEST() local
161 ShapeInferenceTestOp op("ReaderRead"); in TEST() local
[all …]
Dsparse_ops_test.cc26 ShapeInferenceTestOp op("SparseTensorDenseAdd"); in TEST() local
33 ShapeInferenceTestOp op("SparseAdd"); in TEST() local
43 ShapeInferenceTestOp op("SparseAddGrad"); in TEST() local
56 ShapeInferenceTestOp op("SparseReorder"); in TEST() local
73 ShapeInferenceTestOp op("SparseReshape"); in TEST() local
91 ShapeInferenceTestOp op("SparseSplit"); in TEST() local
110 ShapeInferenceTestOp op("SparseToDense"); in TEST() local
123 ShapeInferenceTestOp op("SparseReduceSum"); in TEST() local
130 ShapeInferenceTestOp op("SerializeSparse"); in TEST() local
142 ShapeInferenceTestOp op("SerializeManySparse"); in TEST() local
[all …]
Dnn_ops_test.cc27 ShapeInferenceTestOp op("TopK"); in TEST() local
56 ShapeInferenceTestOp op("TopKV2"); in TEST() local
85 ShapeInferenceTestOp op("NthElement"); in TEST() local
108 ShapeInferenceTestOp op("BatchNormWithGlobalNormalization"); in TEST() local
131 ShapeInferenceTestOp op("QuantizedBatchNormWithGlobalNormalization"); in TEST() local
160 ShapeInferenceTestOp op("BatchNormWithGlobalNormalizationGrad"); in TEST() local
182 ShapeInferenceTestOp op("FusedBatchNorm"); in TEST() local
262 ShapeInferenceTestOp op("FusedBatchNormGrad"); in TEST() local
308 ShapeInferenceTestOp op("Conv3DBackpropInput"); in TEST() local
320 ShapeInferenceTestOp op("Conv3DBackpropFilter"); in TEST() local
[all …]
Darray_ops_test.cc31 ShapeInferenceTestOp op("Pack"); in TEST() local
83 ShapeInferenceTestOp op("Unpack"); in TEST() local
122 ShapeInferenceTestOp op("Const"); in TEST() local
153 ShapeInferenceTestOp op(op_name); in TEST() local
160 ShapeInferenceTestOp op("MatrixBandPart"); in TEST() local
167 ShapeInferenceTestOp op("GuaranteeConst"); in TEST() local
175 ShapeInferenceTestOp op(op_name); in TEST() local
199 ShapeInferenceTestOp op("Diag"); in TEST() local
207 ShapeInferenceTestOp op("DiagPart"); in TEST() local
219 ShapeInferenceTestOp op("MatrixDiag"); in TEST() local
[all …]
Dimage_ops_test.cc26 ShapeInferenceTestOp op("SampleDistortedBoundingBox"); in TEST() local
33 ShapeInferenceTestOp op(op_name); in TEST() local
54 ShapeInferenceTestOp op("DecodeGif"); in TEST() local
66 ShapeInferenceTestOp op(op_name); in TEST() local
95 ShapeInferenceTestOp op(op_name); in TEST() local
129 ShapeInferenceTestOp op(op_name); in TEST() local
147 ShapeInferenceTestOp op(op_name); in TEST() local
157 ShapeInferenceTestOp op("ExtractJpegShape"); in TEST() local
168 ShapeInferenceTestOp op(op_name); in TEST() local
182 ShapeInferenceTestOp op("ExtractGlimpse"); in TEST() local
[all …]
Dspectral_ops_test.cc24 ShapeInferenceTestOp op(op_name); in TEST() local
33 ShapeInferenceTestOp op(op_name); in TEST() local
42 ShapeInferenceTestOp op(op_name); in TEST() local
54 ShapeInferenceTestOp op(forward ? "RFFT" : "IRFFT"); in TEST() local
114 ShapeInferenceTestOp op(forward ? "RFFT2D" : "IRFFT2D"); in TEST() local
174 ShapeInferenceTestOp op(forward ? "RFFT3D" : "IRFFT3D"); in TEST() local
Ddata_flow_ops_test.cc27 ShapeInferenceTestOp op("LookupTableFind"); in TEST() local
38 ShapeInferenceTestOp op("LookupTableInsert"); in TEST() local
48 ShapeInferenceTestOp op("LookupTableSize"); in TEST() local
59 ShapeInferenceTestOp op("LookupTableExport"); in TEST() local
69 ShapeInferenceTestOp op("InitializeTable"); in TEST() local
83 ShapeInferenceTestOp op("InitializeTableFromTextFile"); in TEST() local
93 ShapeInferenceTestOp op("DynamicPartition"); in TEST() local
121 ShapeInferenceTestOp op("DynamicStitch"); in TEST() local
165 ShapeInferenceTestOp op("ParallelDynamicStitch"); in TEST() local
185 ShapeInferenceTestOp op("TensorArrayV3"); in TEST() local
[all …]
/external/python/cpython3/Objects/
Dcellobject.c8 PyCellObject *op; in PyCell_New() local
21 PyCell_Get(PyObject *op) in PyCell_Get()
32 PyCell_Set(PyObject *op, PyObject *obj) in PyCell_Set()
47 cell_dealloc(PyCellObject *op) in cell_dealloc()
57 cell_richcompare(PyObject *a, PyObject *b, int op) in cell_richcompare()
107 cell_repr(PyCellObject *op) in cell_repr()
118 cell_traverse(PyCellObject *op, visitproc visit, void *arg) in cell_traverse()
125 cell_clear(PyCellObject *op) in cell_clear()
132 cell_get_contents(PyCellObject *op, void *closure) in cell_get_contents()
/external/capstone/
DMCInst.c82 void MCOperand_Init(MCOperand *op) in MCOperand_Init()
88 bool MCOperand_isValid(const MCOperand *op) in MCOperand_isValid()
93 bool MCOperand_isReg(const MCOperand *op) in MCOperand_isReg()
98 bool MCOperand_isImm(const MCOperand *op) in MCOperand_isImm()
103 bool MCOperand_isFPImm(const MCOperand *op) in MCOperand_isFPImm()
109 unsigned MCOperand_getReg(const MCOperand *op) in MCOperand_getReg()
115 void MCOperand_setReg(MCOperand *op, unsigned Reg) in MCOperand_setReg()
120 int64_t MCOperand_getImm(MCOperand *op) in MCOperand_getImm()
125 void MCOperand_setImm(MCOperand *op, int64_t Val) in MCOperand_setImm()
130 double MCOperand_getFPImm(const MCOperand *op) in MCOperand_getFPImm()
[all …]
/external/python/cpython2/Objects/
Dcellobject.c8 PyCellObject *op; in PyCell_New() local
21 PyCell_Get(PyObject *op) in PyCell_Get()
32 PyCell_Set(PyObject *op, PyObject *obj) in PyCell_Set()
47 cell_dealloc(PyCellObject *op) in cell_dealloc()
73 cell_repr(PyCellObject *op) in cell_repr()
84 cell_traverse(PyCellObject *op, visitproc visit, void *arg) in cell_traverse()
91 cell_clear(PyCellObject *op) in cell_clear()
98 cell_get_contents(PyCellObject *op, void *closure) in cell_get_contents()
/external/v8/src/parsing/
Dtoken.h228 static bool IsBinaryOp(Value op) { return COMMA <= op && op <= EXP; } in IsBinaryOp()
230 static bool IsTruncatingBinaryOp(Value op) { in IsTruncatingBinaryOp()
234 static bool IsCompareOp(Value op) { in IsCompareOp()
238 static bool IsOrderedRelationalCompareOp(Value op) { in IsOrderedRelationalCompareOp()
242 static bool IsEqualityOp(Value op) { in IsEqualityOp()
246 static bool IsInequalityOp(Value op) { in IsInequalityOp()
250 static bool IsArithmeticCompareOp(Value op) { in IsArithmeticCompareOp()
255 static Value NegateCompareOp(Value op) { in NegateCompareOp()
272 static Value ReverseCompareOp(Value op) { in ReverseCompareOp()
289 static bool EvalComparison(Value op, double op1, double op2) { in EvalComparison()
[all …]
/external/tensorflow/tensorflow/contrib/lite/toco/tflite/
Doperator_test.cc59 std::unique_ptr<T> SerializeAndDeserialize(const BaseOperator& op, in SerializeAndDeserialize()
113 AddOperator op; in TEST_F() local
122 MeanOperator op; in TEST_F() local
131 CastOperator op; in TEST_F() local
141 ConcatenationOperator op; in TEST_F() local
149 DepthToSpaceOperator op; in TEST_F() local
157 FakeQuantOperator op; in TEST_F() local
169 FullyConnectedOperator op; in TEST_F() local
178 GatherOperator op; in TEST_F() local
185 L2PoolOperator op; in TEST_F() local
[all …]
/external/tensorflow/tensorflow/cc/gradients/
Darray_grad.cc42 Status PackGrad(const Scope& scope, const Operation& op, in PackGrad()
59 Status UnpackGrad(const Scope& scope, const Operation& op, in UnpackGrad()
69 Status IdentityGrad(const Scope& scope, const Operation& op, in IdentityGrad()
77 Status RefIdentityGrad(const Scope& scope, const Operation& op, in RefIdentityGrad()
85 Status QuantizeAndDequantizeGrad(const Scope& scope, const Operation& op, in QuantizeAndDequantizeGrad()
93 Status QuantizeAndDequantizeV2Grad(const Scope& scope, const Operation& op, in QuantizeAndDequantizeV2Grad()
103 Status QuantizeAndDequantizeV3Grad(const Scope& scope, const Operation& op, in QuantizeAndDequantizeV3Grad()
114 Status SplitGrad(const Scope& scope, const Operation& op, in SplitGrad()
123 Status DiagGrad(const Scope& scope, const Operation& op, in DiagGrad()
131 Status DiagPartGrad(const Scope& scope, const Operation& op, in DiagPartGrad()
[all …]
/external/tensorflow/tensorflow/contrib/tensor_forest/kernels/
Dmodel_ops_test.cc26 ShapeInferenceTestOp op("CreateTreeVariable"); in TEST() local
31 ShapeInferenceTestOp op("TreeSerialize"); in TEST() local
36 ShapeInferenceTestOp op("TreeDeserialize"); in TEST() local
41 ShapeInferenceTestOp op("TreeSize"); in TEST() local
46 ShapeInferenceTestOp op("TreePredictionsV4"); in TEST() local
68 ShapeInferenceTestOp op("TraverseTreeV4"); in TEST() local
90 ShapeInferenceTestOp op("UpdateModelV4"); in TEST() local
95 ShapeInferenceTestOp op("FeatureUsageCounts"); in TEST() local
/external/python/cpython3/Include/
Dlistobject.h48 #define PyList_Check(op) \ argument
50 #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type) argument
72 #define PyList_GET_ITEM(op, i) (((PyListObject *)(op))->ob_item[i]) argument
73 #define PyList_SET_ITEM(op, i, v) (((PyListObject *)(op))->ob_item[i] = (v)) argument
74 #define PyList_GET_SIZE(op) Py_SIZE(op) argument
75 #define _PyList_ITEMS(op) (((PyListObject *)(op))->ob_item) argument
/external/tensorflow/tensorflow/python/framework/
Dcommon_shapes.py36 def unchanged_shape(op): argument
52 def _ShapeFunction(op): argument
69 def _ShapeFunction(op): argument
86 def _ShapeFunction(op): argument
92 def matmul_shape(op): argument
156 def conv2d_shape(op): argument
225 def depthwise_conv2d_native_shape(op): argument
281 def separable_conv2d_shape(op): argument
344 def avg_pool_shape(op): argument
412 def max_pool_shape(op): argument
[all …]

12345678910>>...86