HomeSort by relevance Sort by last modified time
    Searched refs:operand_types (Results 1 - 12 of 12) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/client/lib/
comparators.h 28 // computation has 2 * 'operand_types.size()' many parameters, where parameters
29 // 2 * i and 2 * i + 1 are a scalar with primitive type 'operand_types[i]'. The
34 const std::vector<PrimitiveType>& operand_types, XlaBuilder* builder);
37 // computation has 2 * 'operand_types.size()' many parameters, where parameters
38 // 2 * i and 2 * i + 1 are a scalar with primitive type 'operand_types[i]'. The
43 const std::vector<PrimitiveType>& operand_types, XlaBuilder* builder);
comparators.cc 93 const string& name, const std::vector<PrimitiveType>& operand_types,
96 // parameters of type 'operand_types[0]'.
98 if (operand_types.empty()) {
99 b->ReportError(InvalidArgument("operand_types should not be empty"));
107 // For each type in 'operand_types' we create two parameters of this type. The
112 for (auto operand_type : operand_types) {
124 if (primitive_util::IsFloatingPointType(operand_types[0])) {
125 PrimitiveType compare_type = operand_types[0];
147 const std::vector<PrimitiveType>& operand_types, XlaBuilder* builder) {
148 return CreateScalarComparisonComputation("compare-less-than", operand_types,
    [all...]
  /external/vixl/tools/test_generator/
parser.py 45 operand_types Dictionnary of type names corresponding to the JSON
54 def __init__(self, operand_types, operand_variants, input_types,
56 self.operand_types = operand_types
66 type_name = self.operand_types[identifier]
142 operand_types = {
160 return DataTypeBuilder(operand_types, operand_variants, input_types, input_values)
generator.py 149 def GenerateOperands(self, operand_types):
162 operand_types The `OperandList` object that describe the form of the
180 for operand_type in operand_types.unwrap()
183 args=",".join(operand_types.GetNames()),
  /external/tensorflow/tensorflow/compiler/xla/service/
bfloat16_normalization.cc 154 std::vector<PrimitiveType> operand_types(hlo->operand_count());
161 operand_types[i] = hlo->operand(i)->shape().element_type();
163 if (operand_types[i] == F32) {
165 } else if (operand_types[i] == BF16) {
186 if (operand_types[i] != BF16) {
hlo_creation_utils.cc 295 std::vector<PrimitiveType> operand_types(operands.size());
297 operand_types[i] = operands[i]->shape().element_type();
299 XlaComputation comparator = CreateScalarLtComputation(operand_types, &b);
  /external/v8/src/compiler/
bytecode-analysis.cc 98 const OperandType* operand_types = Bytecodes::GetOperandTypes(bytecode); local
119 switch (operand_types[i]) {
159 DCHECK(!Bytecodes::IsRegisterOutputOperandType(operand_types[i]));
168 switch (operand_types[i]) {
197 DCHECK(!Bytecodes::IsRegisterInputOperandType(operand_types[i]));
278 const OperandType* operand_types = Bytecodes::GetOperandTypes(bytecode); local
281 switch (operand_types[i]) {
301 DCHECK(!Bytecodes::IsRegisterOutputOperandType(operand_types[i]));
    [all...]
  /external/v8/src/interpreter/
bytecode-array-accessor.cc 161 const OperandType* operand_types = local
163 OperandType operand_type = operand_types[operand_index];
bytecode-array-builder.cc 293 OperandType... operand_types>
302 // The "OperandHelper<operand_types>::Convert(builder, operands)..." will
309 return BytecodeNode::Create<bytecode, accumulator_use, operand_types...>(
311 OperandHelper<operand_types>::Convert(builder, operands)...);
    [all...]
bytecode-node.h 131 OperandType... operand_types>
bytecode-array-builder.h 534 OperandType... operand_types>
  /external/tensorflow/tensorflow/compiler/xla/client/
xla_builder.cc     [all...]

Completed in 1776 milliseconds