HomeSort by relevance Sort by last modified time
    Searched defs:op_type (Results 1 - 25 of 41) sorted by null

1 2

  /hardware/qcom/neuralnetworks/hvxservice/1.0/hexagon_nn_controller/
hexagon_nn_ops.h 54 } op_type; typedef in typeref:enum:op_type_enum
  /external/google-breakpad/src/third_party/libdisasm/
ia32_operand.c 232 static size_t decode_operand_size( unsigned int op_type, x86_insn_t *insn,
237 switch (op_type) {
383 unsigned int addr_meth, op_type, op_size, gen_regs; local
389 op_type = raw_flags & OPTYPE_MASK;
404 op_size = decode_operand_size(op_type, insn, op);
  /external/tensorflow/tensorflow/contrib/graph_editor/tests/
match.py 27 "op_type",
41 def op_type(op_types, op=None): function
  /external/tensorflow/tensorflow/python/eager/
execution_callbacks.py 40 op_type,
48 op_type: Type name of the op that generated the tensor that generated the
57 self._op_type = op_type
86 def op_type(self): member in class:InfOrNanError
106 def inf_nan_callback(op_type,
123 op_type: Name of the TFE operation type (e.g., `MatMul`).
176 error = InfOrNanError(op_type, op_name, index, len(outputs), value)
189 def inf_callback(op_type,
197 op_type,
207 def nan_callback(op_type,
    [all...]
  /system/update_engine/payload_generator/
cycle_breaker.cc 58 InstallOperation_Type op_type = graph[i].aop.op.type(); local
59 if (op_type == InstallOperation::REPLACE ||
60 op_type == InstallOperation::REPLACE_BZ) {
full_update_generator.cc 105 InstallOperation_Type op_type; local
107 buffer_in_, version_, &op_blob, &op_type));
109 aop_->op.set_type(op_type);
ab_generator.cc 283 InstallOperation_Type op_type; local
285 diff_utils::GenerateBestFullOperation(data, version, &blob, &op_type));
289 if (aop->op.type() != op_type || aop->op.data_length() != blob.size()) {
290 aop->op.set_type(op_type);
delta_diff_utils.cc 723 InstallOperation_Type op_type; local
725 GenerateBestFullOperation(new_data, version, &data_blob, &op_type));
726 operation.set_type(op_type);
    [all...]
  /external/v8/src/interpreter/
bytecode-decoder.cc 124 OperandType op_type = Bytecodes::GetOperandType(bytecode, i); local
129 switch (op_type) {
133 << DecodeUnsignedOperand(operand_start, op_type, operand_scale)
138 DecodeUnsignedOperand(operand_start, op_type, operand_scale));
144 operand_start, op_type, operand_scale))
148 os << "[" << DecodeSignedOperand(operand_start, op_type, operand_scale)
153 << DecodeUnsignedOperand(operand_start, op_type, operand_scale);
158 DecodeRegisterOperand(operand_start, op_type, operand_scale);
164 DecodeRegisterListOperand(operand_start, 3, op_type, operand_scale);
172 DecodeRegisterListOperand(operand_start, 2, op_type, operand_scale)
    [all...]
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl33.c 68 int op_type; member in struct:test_case_t
218 switch (test_cases[i].op_type) {
  /external/tensorflow/tensorflow/compiler/xla/python/
numpy_bridge.cc 329 tensorflow::gtl::optional<string> op_type = GetAttrAsString(o, "op_type"); local
330 if (op_type.has_value()) {
331 result.set_op_type(op_type.value());
  /external/tensorflow/tensorflow/contrib/lite/
model.cc 205 void* ParseOpData(const Operator* op, BuiltinOperator op_type,
256 switch (op_type) {
596 auto op_type = local
598 if (op_type != BuiltinOperator_CUSTOM && op->custom_options()) {
601 EnumNameBuiltinOperator(op_type));
613 ParseOpData(op, op_type, error_reporter_), reg);
  /external/tensorflow/tensorflow/core/common_runtime/
constant_folding.cc 89 DataType op_type = n->output_type(0); local
90 Tensor t(op_type, TensorShape({rank}));
91 if (op_type == DT_INT64) {
97 CHECK(op_type == DT_INT32);
144 DataType op_type = n->output_type(0); local
145 Tensor t(op_type, TensorShape({}));
147 if (op_type == DT_INT64) {
150 CHECK(op_type == DT_INT32);
placer.cc 478 const string& op_type = node->type_string(); local
485 type_to_devices[op_type] = std::move(devices_registered);
    [all...]
  /external/tensorflow/tensorflow/java/src/main/native/
operation_builder_jni.cc 62 const char* op_type = env->GetStringUTFChars(type, nullptr); local
64 TF_OperationDescription* d = TF_NewOperation(graph, op_type, op_name);
66 env->ReleaseStringUTFChars(type, op_type);
  /system/bt/stack/gap/
gap_ble.cc 310 uint16_t op_type; local
317 op_type = p_clcb->cl_op_uuid;
321 status, op_type);
331 switch (op_type) {
  /toolchain/binutils/binutils-2.27/gas/config/
xtensa-relax.h 94 typedef enum op_type enum
tc-d10v.c 487 int op_type,
494 shift = d10v_operands[op_type].shift;
498 bits = d10v_operands[op_type].bits;
501 if (check_range (value, bits, d10v_operands[op_type].flags))
1499 int op_type; local
    [all...]
tc-z8k.c 187 } op_type; typedef in typeref:struct:z8k_op
730 get_operands (const opcode_entry_type *opcode, char *op_end, op_type *operand)
858 get_specific (opcode_entry_type *opcode, op_type *operands)
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
cgen-opc.c 560 enum cgen_operand_type op_type = opinst->op_type;
561 if (op_type == CGEN_OPERAND_NIL)
564 indices[i] = (*cd->get_int_operand) (cd, op_type, fields);
556 enum cgen_operand_type op_type = opinst->op_type; local
  /external/tensorflow/tensorflow/c/eager/
tape.h 42 string op_type; member in struct:tensorflow::eager::OpTapeEntry
137 void RecordOperation(const string& op_type,
189 const string& op_type, gtl::ArraySlice<TapeTensor> output_tensors,
213 op_type, tensors, ids, backward_function, backward_function_deleter};
499 functions_accept_none_for_indices.find(trace.op_type);
  /external/tensorflow/tensorflow/core/util/
stat_summarizer.cc 113 // timeline_label should be of the format: <node_name> = <op_type>(<args>)
114 // Extract <op_type>.
147 std::string op_type = "<>"; local
157 op_type = "gpu:" + parts[1];
166 op_type = "gpu:" + parts.back();
169 op_type = OpType(ds, ns);
184 detail->type = op_type;
  /external/tensorflow/tensorflow/core/kernels/hexagon/
graph_transferer.cc 582 const StringPiece op_type(node.type_string());
583 if (op_type == "Transpose" || op_type == "ExpandDims") {
590 const StringPiece op_type(node.type_string());
591 if (op_type == "Pad") {
781 const string op_type = node.type_string(); local
782 VLOG(1) << "Register input node: " << node.name() << ", " << op_type;
788 << "Op" << node.name() << ", " << op_type << " is not supported,"
803 const string op_type = "FLATTEN"; local
805 const int op_type_id = ops_definitions.GetOpIdFor(op_type, {});
    [all...]
  /bionic/libc/kernel/uapi/linux/
virtio_crypto.h 169 __le32 op_type; member in struct:virtio_crypto_sym_create_session_req
252 __le32 op_type; member in struct:virtio_crypto_sym_data_req
  /external/kernel-headers/original/uapi/linux/
virtio_crypto.h 227 __le32 op_type; member in struct:virtio_crypto_sym_create_session_req
383 __le32 op_type; member in struct:virtio_crypto_sym_data_req

Completed in 587 milliseconds

1 2