/external/igt-gpu-tools/lib/ |
D | i915_3d.h | 389 #define i915_fs_arith_masked(op, dest_reg, dest_mask, operand0, operand1, operand2) \ argument 390 _i915_fs_arith_masked(A0_##op, dest_reg, dest_mask, operand0, operand1, operand2) 392 #define i915_fs_arith(op, dest_reg, operand0, operand1, operand2) \ argument 393 _i915_fs_arith(A0_##op, dest_reg, operand0, operand1, operand2) 395 #define _i915_fs_arith_masked(cmd, dest_reg, dest_mask, operand0, operand1, operand2) \ argument 404 (REG_TYPE(operand0) << A0_SRC0_TYPE_SHIFT) | \ 405 (REG_NR(operand0) << A0_SRC0_NR_SHIFT)); \ 406 OUT_BATCH(i915_get_hardware_channel_val(REG_X(operand0), \ 409 i915_get_hardware_channel_val(REG_Y(operand0), \ 412 i915_get_hardware_channel_val(REG_Z(operand0), \ [all …]
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_vgpu10.c | 1094 VGPU10OperandToken0 operand0, in setup_operand0_indexing() argument 1105 if (operand0.operandType == VGPU10_OPERAND_TYPE_IMMEDIATE32 || in setup_operand0_indexing() 1106 operand0.operandType == VGPU10_OPERAND_TYPE_INPUT_PRIMITIVEID || in setup_operand0_indexing() 1107 operand0.operandType == VGPU10_OPERAND_TYPE_INPUT_GS_INSTANCE_ID || in setup_operand0_indexing() 1108 operand0.operandType == VGPU10_OPERAND_TYPE_INPUT_THREAD_ID || in setup_operand0_indexing() 1109 operand0.operandType == VGPU10_OPERAND_TYPE_INPUT_THREAD_ID_IN_GROUP || in setup_operand0_indexing() 1110 operand0.operandType == VGPU10_OPERAND_TYPE_OUTPUT_CONTROL_POINT_ID) { in setup_operand0_indexing() 1113 assert(operand0.selectionMode == 0); in setup_operand0_indexing() 1115 else if (operand0.operandType == VGPU10_OPERAND_TYPE_INPUT_DOMAIN_POINT) { in setup_operand0_indexing() 1143 operand0.indexDimension = indexDim; in setup_operand0_indexing() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | fusion_merger_test.cc | 93 auto* operand0 = root->operand(0); in TEST_F() local 94 EXPECT_EQ(HloOpcode::kFusion, operand0->opcode()); in TEST_F() 95 EXPECT_EQ(4, operand0->fused_instruction_count()); in TEST_F()
|
/external/mesa3d/src/gallium/drivers/zink/nir_to_spirv/ |
D | spirv_builder.h | 181 SpvId operand0, SpvId operand1); 185 SpvId operand0, SpvId operand1, SpvId operand2); 189 SpvId operand0, SpvId operand1, SpvId operand2, SpvId operand3);
|
D | spirv_builder.c | 420 SpvId operand0, SpvId operand1) in spirv_builder_emit_binop() argument 427 spirv_buffer_emit_word(&b->instructions, operand0); in spirv_builder_emit_binop() 434 SpvId operand0, SpvId operand1, SpvId operand2) in spirv_builder_emit_triop() argument 441 spirv_buffer_emit_word(&b->instructions, operand0); in spirv_builder_emit_triop() 449 SpvId operand0, SpvId operand1, SpvId operand2, SpvId operand3) in spirv_builder_emit_quadop() argument 456 spirv_buffer_emit_word(&b->instructions, operand0); in spirv_builder_emit_quadop()
|
/external/tensorflow/tensorflow/compiler/mlir/hlo/tests/ |
D | hlo-legalize-to-lhlo.mlir | 288 func @and(%operand0: tensor<2x2xi32>, %operand1: tensor<2x2xi32>) 290 %result = "mhlo.and"(%operand0, %operand1) 359 func @or(%operand0: tensor<2x2xi32>, %operand1: tensor<2x2xi32>) 361 %result = "mhlo.or"(%operand0, %operand1) 454 func @xor(%operand0: tensor<2x2xi32>, %operand1: tensor<2x2xi32>) 456 %result = "mhlo.xor"(%operand0, %operand1)
|
/external/tensorflow/tensorflow/compiler/mlir/tfjs/transforms/ |
D | optimize_pattern.td | 26 // Checks if the operand0's rank is one less than operand1's rank.
|
/external/llvm-project/llvm/docs/ |
D | AMDGPUInstructionSyntax.rst | 18 …``<``\ *opcode mnemonic*\ ``> <``\ *operand0*\ ``>, <``\ *operand1*\ ``>,... <``\ *modifier0…
|
D | AMDGPUUsage.rst | 8681 | ``<``\ *opcode*\ ``> <``\ *operand0*\ ``>, <``\ *operand1*\ ``>,...
|
/external/tensorflow/tensorflow/compiler/xla/service/spmd/ |
D | dot_handler.cc | 3294 auto operand0 = outside_to_inside[reduce_outside->operand(0)]; in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions() local 3298 {&operand0->shape(), &operand1->shape()}, in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions() 3311 operand0->shape().dimensions(i)) { in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions() 3324 ShapeUtil::ChangeElementType(operand0->shape(), S32), dim)); in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions() 3338 operand0 = body->AddInstruction(HloInstruction::CreateTernary( in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions() 3339 operand0->shape(), HloOpcode::kSelect, compare, operand0, in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions() 3341 operand0->shape(), operand1, {})))); in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions() 3345 reduce_shape, {operand0, operand1})); in MoveUsersIntoWindowedDotGeneralLoopOnNonContractingDimensions()
|
/external/llvm-project/mlir/test/Rewrite/ |
D | pdl-bytecode.mlir | 429 %operand0 = pdl_interp.get_operand 0 of %root 431 %defOp0 = pdl_interp.get_defining_op of %operand0
|
/external/tensorflow/tensorflow/compiler/mlir/lite/ir/ |
D | tfl_ops.cc | 1174 Value operand0 = op.getOperand(0); in Verify() local 1175 auto input_type = operand0.getType().cast<ShapedType>(); in Verify()
|
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/ |
D | optimize_patterns.td | 537 // Checks if the operand0's rank is one less than operand1's rank.
|
/external/llvm-project/mlir/test/lib/Dialect/Test/ |
D | TestOps.td | 1541 let arguments = (ins Variadic<I64>:$operand0, Variadic<AnyType>:$operand1); 1543 ` ` `(` $operand0 `)` `,` `(` $operand1 `:` type($operand1) `)` attr-dict
|
/external/tensorflow/tensorflow/lite/delegates/nnapi/ |
D | nnapi_delegate.cc | 2446 const TfLiteTensor& operand0 = context->tensors[node->inputs->data[0]]; in Validate() local 2447 if (operand0.dims->size == 0) { in Validate() 2448 Expect(operand0.allocation_type == kTfLiteMmapRo, in Validate()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_evaluator_test.cc | 118 auto operand0 = in TestTernaryOp() local 125 expected.shape(), opcode, operand0, operand1, operand2)); in TestTernaryOp()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | arm_sve.td | 194 def IsOverloadWhileRW : FlagType<0x00400000>; // Use {pred(default type), typeof(operand0)}… 195 def IsOverloadCvt : FlagType<0x00800000>; // Use {typeof(operand0), typeof(last operand…
|
/external/tensorflow/tensorflow/compiler/xla/g3doc/ |
D | operation_semantics.md | 2790 For example, if there are three operands `operand0 = [3, 1]`, 2792 only the values of `operand0` with less-than, then the output of the sort is the
|