Home
last modified time | relevance | path

Searched refs:ABS (Results 1 – 7 of 7) sorted by relevance

/frameworks/ml/nn/runtime/test/generated/vts_models/
Dabs.model.cpp28 .type = OperationType::ABS, in createTestModel()
79 .type = OperationType::ABS, in createTestModel_relaxed()
131 .type = OperationType::ABS, in createTestModel_float16()
182 .type = OperationType::ABS, in createTestModel_dynamic_output_shape()
233 .type = OperationType::ABS, in createTestModel_dynamic_output_shape_relaxed()
285 .type = OperationType::ABS, in createTestModel_dynamic_output_shape_float16()
/frameworks/base/tools/aapt2/compile/
DPng.cpp241 #ifdef ABS
242 #undef ABS
246 #define ABS(a) ((a) < 0 ? -(a) : (a)) macro
284 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation); in analyze_image()
285 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation); in analyze_image()
286 maxGrayDeviation = MAX(ABS(bb - rr), maxGrayDeviation); in analyze_image()
/frameworks/ml/nn/common/operations/
DElementwise.cpp109 NN_REGISTER_OPERATION(ABS, "ABS", elementwise::validate, elementwise::prepare,
/frameworks/ml/nn/runtime/test/fuzzing/operation_signatures/
DElementwise.cpp52 DEFINE_ELEMENTWISE_SIGNATURE_WITH_RANK5(ABS, V1_2, Type::TENSOR_FLOAT32, Type::TENSOR_FLOAT16);
/frameworks/base/tools/aapt/
DImages.cpp873 #define ABS(a) ((a)<0?-(a):(a)) macro
940 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation); in analyze_image()
941 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation); in analyze_image()
942 maxGrayDeviation = MAX(ABS(bb - rr), maxGrayDeviation); in analyze_image()
/frameworks/ml/nn/runtime/test/fuzzing/
DTestRandomGraph.cpp525 TEST_SINGLE_OPERATION(ABS, V1_2, kMediumCriteria);
/frameworks/ml/nn/runtime/
DNeuralNetworks.cpp369 static_assert(static_cast<int32_t>(OperationType::ABS) == ANEURALNETWORKS_ABS,