Home
last modified time | relevance | path

Searched refs:heightIndex (Results 1 – 5 of 5) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/fuzzing/operation_signatures/
DConvolutions.cpp45 int heightIndex = useNchw ? 2 : 1; in conv2DExplicitConstructor() local
68 explicitPadding(op->inputs[0]->dimensions[heightIndex], op->inputs[1]->dimensions[1], in conv2DExplicitConstructor()
70 &op->outputs[0]->dimensions[heightIndex]); in conv2DExplicitConstructor()
97 int heightIndex = useNchw ? 2 : 1; in conv2DImplicitConstructor() local
120 implicitPadding(op->inputs[0]->dimensions[heightIndex], op->inputs[1]->dimensions[1], in conv2DImplicitConstructor()
122 &op->outputs[0]->dimensions[heightIndex]); in conv2DImplicitConstructor()
284 int heightIndex = useNchw ? 2 : 1; in depthwiseConv2DExplicitConstructor() local
308 explicitPadding(op->inputs[0]->dimensions[heightIndex], op->inputs[1]->dimensions[1], in depthwiseConv2DExplicitConstructor()
310 &op->outputs[0]->dimensions[heightIndex]); in depthwiseConv2DExplicitConstructor()
337 int heightIndex = useNchw ? 2 : 1; in depthwiseConv2DImplicitConstructor() local
[all …]
DPoolings.cpp38 int heightIndex = useNchw ? 2 : 1; in poolingExplicitOpConstructor() local
54 explicitPadding(op->inputs[0]->dimensions[heightIndex], filterHeight, strideHeight, in poolingExplicitOpConstructor()
56 &op->outputs[0]->dimensions[heightIndex]); in poolingExplicitOpConstructor()
77 int heightIndex = useNchw ? 2 : 1; in poolingImplicitOpConstructor() local
93 implicitPadding(op->inputs[0]->dimensions[heightIndex], filterHeight, strideHeight, in poolingImplicitOpConstructor()
94 /*dilation=*/1, paddingScheme, &op->outputs[0]->dimensions[heightIndex]); in poolingImplicitOpConstructor()
DResize.cpp28 int heightIndex = useNchw ? 2 : 1; in resizeOpConstructor() local
42 outHeight = op->inputs[0]->dimensions[heightIndex] * op->inputs[2]->value<float>(); in resizeOpConstructor()
47 outHeight = op->inputs[0]->dimensions[heightIndex] * in resizeOpConstructor()
DReshape.cpp31 int heightIndex = useNchw ? 2 : 1; in spaceToDepthConstructor() local
38 auto outHeight = op->inputs[0]->dimensions[heightIndex].exactDiv(blockSize); in spaceToDepthConstructor()
86 int heightIndex = useNchw ? 2 : 1; in depthToSpaceConstructor() local
93 auto outHeight = op->inputs[0]->dimensions[heightIndex] * blockSize; in depthToSpaceConstructor()
174 int heightIndex = useNchw ? 2 : 1; in batchToSpaceConstructor() local
182 auto outHeight = op->inputs[0]->dimensions[heightIndex] * blockHeight; in batchToSpaceConstructor()
232 int heightIndex = useNchw ? 2 : 1; in spaceToBatchConstructor() local
239 auto paddedHeight = op->inputs[0]->dimensions[heightIndex] + in spaceToBatchConstructor()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/data/
DExternalDbFacadeTest.java1230 int heightIndex = cursor.getColumnIndex(CloudMediaProviderContract.MediaColumns.HEIGHT); in assertMediaColumns() local
1254 .that(cursor.getInt(heightIndex)) in assertMediaColumns()