Home
last modified time | relevance | path

Searched refs:inputShape (Results 1 – 10 of 10) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/cfg/
DCoercionConfigs.java163 Class<?> targetClass, CoercionInputShape inputShape) in findCoercion() argument
169 CoercionAction act = cc.findAction(inputShape); in findCoercion()
180 CoercionAction act = cc.findAction(inputShape); in findCoercion()
188 CoercionAction act = _defaultCoercions.findAction(inputShape); in findCoercion()
194 if (inputShape == CoercionInputShape.EmptyArray) { in findCoercion()
199 if ((inputShape == CoercionInputShape.Float) in findCoercion()
220 if (inputShape == CoercionInputShape.EmptyString) { in findCoercion()
/external/llvm-project/mlir/examples/toy/Ch3/mlir/
DDialect.cpp240 auto inputShape = inputType.getShape(); in verify() local
241 if (!std::equal(inputShape.begin(), inputShape.end(), in verify()
/external/llvm-project/mlir/examples/toy/Ch2/mlir/
DDialect.cpp240 auto inputShape = inputType.getShape(); in verify() local
241 if (!std::equal(inputShape.begin(), inputShape.end(), in verify()
/external/llvm-project/mlir/examples/toy/Ch6/mlir/
DDialect.cpp327 auto inputShape = inputType.getShape(); in verify() local
328 if (!std::equal(inputShape.begin(), inputShape.end(), in verify()
/external/llvm-project/mlir/examples/toy/Ch5/mlir/
DDialect.cpp327 auto inputShape = inputType.getShape(); in verify() local
328 if (!std::equal(inputShape.begin(), inputShape.end(), in verify()
/external/llvm-project/mlir/examples/toy/Ch4/mlir/
DDialect.cpp327 auto inputShape = inputType.getShape(); in verify() local
328 if (!std::equal(inputShape.begin(), inputShape.end(), in verify()
/external/tensorflow/tensorflow/lite/java/src/main/java/org/tensorflow/lite/
DTensor.java288 int[] inputShape = computeShapeOf(input); in getInputShapeIfDifferent() local
289 if (Arrays.equals(shapeCopy, inputShape)) { in getInputShapeIfDifferent()
292 return inputShape; in getInputShapeIfDifferent()
/external/llvm-project/mlir/examples/toy/Ch7/mlir/
DDialect.cpp406 auto inputShape = inputType.getShape(); in verify() local
407 if (!std::equal(inputShape.begin(), inputShape.end(), in verify()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DDeserializationConfig.java930 Class<?> targetClass, CoercionInputShape inputShape) in findCoercionAction() argument
933 targetType, targetClass, inputShape); in findCoercionAction()
DDeserializationContext.java490 Class<?> targetClass, CoercionInputShape inputShape) in findCoercionAction() argument
492 return _config.findCoercionAction(targetType, targetClass, inputShape); in findCoercionAction()