Home
last modified time | relevance | path

Searched refs:kCeil (Results 1 – 20 of 20) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/tests/
Dfloor_ceil_test.cc36 kCeil, enumerator
45 if (f == kCeil) { in TestR1F32()
58 if (f == kCeil) { in TestR0F32()
87 {0.0, -0.0, infinity_, minus_infinity_, 2.0, -0.0}, kCeil); in TEST_F()
100 TestR0F32(0.0, 0.0, kCeil); in TEST_F()
101 TestR0F32(-0.0, -0.0, kCeil); in TEST_F()
102 TestR0F32(infinity_, infinity_, kCeil); in TEST_F()
103 TestR0F32(minus_infinity_, minus_infinity_, kCeil); in TEST_F()
104 TestR0F32(1.1, 2.0, kCeil); in TEST_F()
105 TestR0F32(-0.1, -0.0, kCeil); in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
Dcpu_fusion_test.cc101 HloInstruction::CreateUnary(vshape, HloOpcode::kCeil, negate)); in TEST_F()
151 HloInstruction::CreateUnary(vshape, HloOpcode::kCeil, negate)); in TEST_F()
248 HloInstruction::CreateUnary(vshape, HloOpcode::kCeil, negate)); in TEST_F()
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dreorder_elementwise_unary.cc33 case OperatorType::kCeil: in IsElementwiseOperator()
Dpropagate_fixed_sizes.cc2105 case OperatorType::kCeil: in Run()
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_opcode.h65 V(kCeil, "ceil", 1) \
Dinstruction_fusion.cc65 case HloOpcode::kCeil: in IsExpensive()
Dhlo_instruction.cc693 case HloOpcode::kCeil: in CreateUnary()
1398 case HloOpcode::kCeil: in CloneWithNewOperands()
1733 case HloOpcode::kCeil: in IdenticalSlowPath()
2123 case HloOpcode::kCeil: in IsElementwiseImpl()
2577 case HloOpcode::kCeil: in Visit()
Dcall_graph_test.cc251 module->AddEmbeddedComputation(MakeScalarComputation(HloOpcode::kCeil)); in TEST_F()
Dhlo_graph_dumper.cc929 case HloOpcode::kCeil: in GetInstructionColor()
Delemental_ir_emitter.cc431 case HloOpcode::kCeil: in EmitFloatUnaryOp()
2208 case HloOpcode::kCeil: in MakeElementGenerator()
Dlayout_assignment.cc1987 case HloOpcode::kCeil: in InstructionCanChangeLayout()
Dshape_inference.cc243 case HloOpcode::kCeil: in InferUnaryOpShape()
Dbuffer_assignment_test.cc918 BuildR0F32UnaryOpComputation(HloOpcode::kCeil, "Ceil")); in TEST_F()
Dhlo_dataflow_analysis_test.cc1801 CreateR0F32UnaryOpComputation(HloOpcode::kCeil)); in TEST_P()
Dhlo_parser.cc734 case HloOpcode::kCeil: in ParseInstructionRhs()
/external/tensorflow/tensorflow/lite/toco/
Dmodel.h45 kCeil, enumerator
1714 CeilOperator() : Operator(OperatorType::kCeil) {}
Dexport_tensorflow.cc2210 } else if (src_op.type == OperatorType::kCeil) { in ConvertOperator()
/external/tensorflow/tensorflow/lite/toco/tflite/
Doperator_test.cc115 CheckSimpleOperator<CeilOperator>("CEIL", OperatorType::kCeil); in TEST_F()
Doperator.cc2497 MakeUnique<SimpleOperator<CeilOperator>>("CEIL", OperatorType::kCeil)); in BuildOperatorList()
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.cc3300 return operand.builder()->UnaryOp(HloOpcode::kCeil, operand); in Ceil()