Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/
DUtilsTest.cpp43 EXPECT_TRUE(calculateBroadcastedShape(shape1, shape2, &actualOutputShape)); in TEST()
46 EXPECT_TRUE(calculateBroadcastedShape(shape2, shape1, &actualOutputShape)); in TEST()
57 EXPECT_FALSE(calculateBroadcastedShape(shape1, shape2, &actualOutputShape)); in TEST()
58 EXPECT_FALSE(calculateBroadcastedShape(shape2, shape1, &actualOutputShape)); in TEST()
DOperationsUtils.cpp341 bool calculateBroadcastedShape(const Shape& in1, const Shape& in2, Shape* out) { in calculateBroadcastedShape() function
/frameworks/ml/nn/common/operations/
DPow.cpp67 return calculateBroadcastedShape(baseShape, exponentShape, output); in prepare()
DLogicalAndOr.cpp78 NN_RET_CHECK(calculateBroadcastedShape(input1, input2, &output)); in prepare()
DMaximumMinimum.cpp94 return calculateBroadcastedShape(in1, in2, out); in prepare()
DPRelu.cpp124 NN_RET_CHECK(calculateBroadcastedShape(input, alpha, &output)); in prepare()
DComparisons.cpp152 NN_RET_CHECK(calculateBroadcastedShape(input1, input2, &output)); in prepare()
DBroadcast.cpp485 NN_RET_CHECK(calculateBroadcastedShape(input1, input2, &output)); in prepare()
/frameworks/ml/nn/common/include/
DOperationsUtils.h289 bool calculateBroadcastedShape(const Shape& in1, const Shape& in2, Shape* out);