Searched refs:op_type (Results 1 - 25 of 79) sorted by relevance

1234

/external/swiftshader/third_party/subzero/pydir/
H A Dgen_test_arith_ll.py1 def mangle(op, op_type, signed):
18 return '_Z' + str(len(base)) + base + suffixMap[op_type][signed]
49 for op_type in ['i1', 'i8', 'i16', 'i32']:
50 arith('i32', op_type, op)
51 for op_type in ['i64', '<4 x i32>', '<8 x i16>', '<16 x i8>']:
52 arith(op_type, op_type, op)
55 for op_type in ['float', 'double', '<4 x float>']:
56 arith(op_type, op_type, o
[all...]
/external/tensorflow/tensorflow/core/common_runtime/
H A Dprofile_handler.h41 // - op_type: A type string for the op, which may be used in visualization.
43 // from time "start" to "limit" with "op_type" and "details".
46 StringPiece op_type, StringPiece details) = 0;
57 // - op_type: String name of the Op.
60 bool is_copy, StringPiece label, StringPiece op_type,
/external/tensorflow/tensorflow/core/kernels/
H A Di_remote_fused_graph_ops_definitions.h37 virtual int GetOpIdFor(const string& op_type,
/external/tensorflow/tensorflow/core/kernels/hexagon/
H A Dhexagon_ops_definitions.h34 int GetOpIdFor(const string& op_type, const DataTypeVector& dt) const final;
43 const string& op_type, const DataTypeVector& dt_vec,
H A Dhexagon_ops_definitions.cc288 const string& op_type, const DataTypeVector& dt_vec,
291 if (map->count(op_type) <= 0) {
292 map->emplace(op_type, std::vector<DataTypeToOp>());
294 map->at(op_type).emplace_back(
385 int HexagonOpsDefinitions::GetOpIdFor(const string& op_type, argument
387 if (op_name_to_soc_op_type_map_.count(op_type) > 0) {
389 op_name_to_soc_op_type_map_.at(op_type);
287 EmplaceOpType( const string& op_type, const DataTypeVector& dt_vec, const SupportedOpType supported_op_type, std::unordered_map<string, std::vector<DataTypeToOp>>* map) argument
/external/tensorflow/tensorflow/python/eager/
H A Dtape.py79 def record_operation(op_type, output_tensors, input_tensors, backward_function):
82 op_type, output_tensors, input_tensors, backward_function)
H A Dexecution_callbacks.py40 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...]
/external/v8/src/interpreter/
H A Dbytecode-decoder.cc124 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_scal
[all...]
/external/tensorflow/tensorflow/python/debug/lib/
H A Dprofiling.py33 op_type):
42 op_type: (string) Operation type.
54 self.op_type = op_type
H A Ddebug_utils.py152 op_type = op.type
156 if op_type_pattern and not op_type_pattern.match(op_type):
241 op_type = op.type
245 if op_type_pattern and op_type_pattern.match(op_type):
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dhlo_metadata_test.cc59 EXPECT_EQ("add", instruction->metadata().op_type());
84 EXPECT_EQ("", instruction->metadata().op_type());
/external/tensorflow/tensorflow/contrib/tensorboard/plugins/trace/
H A Dtrace_info.proto27 string op_type = 2;
/external/capstone/bindings/vb6/
H A DvbCapstone.cpp81 int __stdcall bs_op_index(csh handle, const cs_insn *insn, unsigned int op_type, unsigned int position){ argument
83 return cs_op_index(handle,insn,op_type,position);
86 int __stdcall bs_op_count(csh handle, const cs_insn *insn, unsigned int op_type){ argument
88 return cs_op_count(handle,insn,op_type);
H A DModule1.bas557 ' @op_type: Operand type to be found.
559 ' @return: number of operands of given type @op_type in instruction @insn,
563 'int cs_op_count(csh handle, const cs_insn *insn, unsigned int op_type);
564 Public Declare Function cs_op_count Lib "vbCapstone.dll" Alias "bs_op_count" (ByVal handle As Long, ByVal instruction As Long, ByVal op_type As Long) As Long
577 ' @op_type: Operand type to be found.
579 ' [1, cs_op_count(handle, insn, op_type)]
581 ' @return: index of operand of given type @op_type in <arch>.operands[] array
585 'int cs_op_index(csh handle, const cs_insn *insn, unsigned int op_type, unsigned int position);
586 Public Declare Function cs_op_index Lib "vbCapstone.dll" Alias "bs_op_index" (ByVal handle As Long, ByVal instruction As Long, ByVal op_type As Long, ByVal position As Long) As Long
/external/capstone/
H A Dcs.c948 int CAPSTONE_API cs_op_count(csh ud, const cs_insn *insn, unsigned int op_type) argument
980 if (insn->detail->arm.operands[i].type == (arm_op_type)op_type)
985 if (insn->detail->arm64.operands[i].type == (arm64_op_type)op_type)
990 if (insn->detail->x86.operands[i].type == (x86_op_type)op_type)
995 if (insn->detail->mips.operands[i].type == (mips_op_type)op_type)
1000 if (insn->detail->ppc.operands[i].type == (ppc_op_type)op_type)
1005 if (insn->detail->sparc.operands[i].type == (sparc_op_type)op_type)
1010 if (insn->detail->sysz.operands[i].type == (sysz_op_type)op_type)
1015 if (insn->detail->xcore.operands[i].type == (xcore_op_type)op_type)
1024 int CAPSTONE_API cs_op_index(csh ud, const cs_insn *insn, unsigned int op_type, argument
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dselect_reactor.hpp74 int op_type, socket_type descriptor,
85 ASIO_DECL void start_op(int op_type, socket_type descriptor,
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dselect_reactor.hpp74 int op_type, socket_type descriptor,
85 ASIO_DECL void start_op(int op_type, socket_type descriptor,
/external/tensorflow/tensorflow/contrib/graph_editor/tests/
H A Dmatch_test.py52 match.op_type("Add"), match.op_type("Const"))(self.f.op))
/external/capstone/bindings/python/pyx/
H A Dccapstone.pxd66 int cs_op_count(csh handle, cs_insn *insn, unsigned int op_type)
68 int cs_op_index(csh handle, cs_insn *insn, unsigned int op_type,
/external/google-breakpad/src/third_party/libdisasm/
H A Dia32_operand.c232 static size_t decode_operand_size( unsigned int op_type, x86_insn_t *insn, argument
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/ltp/testcases/kernel/syscalls/fcntl/
H A Dfcntl33.c68 int op_type; member in struct:test_case_t
218 switch (test_cases[i].op_type) {
/external/tensorflow/tensorflow/c/
H A Dc_api_internal.h110 TF_OperationDescription(TF_Graph* g, const char* op_type, argument
112 : node_builder(node_name, op_type, g->graph.op_registry()), graph(g) {}
/external/tensorflow/tensorflow/contrib/framework/python/framework/
H A Dgraph_util.py38 output_quantized, op_name, op_type):
48 op_type: fused op type.
112 new_node.op = op_type
/external/tensorflow/tensorflow/contrib/hvx/hvx_ops_support_checker/
H A Dhvx_ops_support_checker_main.cc142 for (const string& op_type : unsupported_ops) {
143 LOG(INFO) << "(" << (++count) << ") " << op_type;
/external/tensorflow/tensorflow/contrib/quantize/python/
H A Dgraph_matcher.py36 def __init__(self, op_type, name=None, inputs=None):
40 op_type: string that specifies the allowed types of the root. It can be
52 self._op_type = op_type

Completed in 712 milliseconds

1234