Home
last modified time | relevance | path

Searched refs:calculateBroadcastedShape (Results 1 – 9 of 9) sorted by relevance

/frameworks/ml/nn/common/
DUtilsTest.cpp39 EXPECT_TRUE(calculateBroadcastedShape(shape1, shape2, &actualOutputShape)); in TEST()
42 EXPECT_TRUE(calculateBroadcastedShape(shape2, shape1, &actualOutputShape)); in TEST()
53 EXPECT_FALSE(calculateBroadcastedShape(shape1, shape2, &actualOutputShape)); in TEST()
54 EXPECT_FALSE(calculateBroadcastedShape(shape2, shape1, &actualOutputShape)); in TEST()
DOperationsUtils.cpp312 bool calculateBroadcastedShape(const Shape& in1, const Shape& in2, Shape* out) { in calculateBroadcastedShape() function
/frameworks/ml/nn/common/operations/
DPow.cpp64 return calculateBroadcastedShape(baseShape, exponentShape, output); in prepare()
DLogicalAndOr.cpp76 NN_RET_CHECK(calculateBroadcastedShape(input1, input2, &output)); in prepare()
DMaximumMinimum.cpp88 return calculateBroadcastedShape(in1, in2, out); in prepare()
DPRelu.cpp113 NN_RET_CHECK(calculateBroadcastedShape(input, alpha, &output)); in prepare()
DComparisons.cpp141 NN_RET_CHECK(calculateBroadcastedShape(input1, input2, &output)); in prepare()
DBroadcast.cpp388 NN_RET_CHECK(calculateBroadcastedShape(input1, input2, &output)); in prepare()
/frameworks/ml/nn/common/include/
DOperationsUtils.h288 bool calculateBroadcastedShape(const Shape& in1, const Shape& in2, Shape* out);