Clarify supported ranks for new ops in R

Fix: 151108533
Test: mma
Change-Id: I85b66ab5940d09b2786ecb14bff5bc1c1dee894a
This commit is contained in:
Lev Proleev 2020-03-12 13:34:18 +00:00
parent 39d306fc44
commit f161cc74a1
2 changed files with 9 additions and 1 deletions

View file

@ -681,7 +681,7 @@ a3eddd9bbdc87e8c22764070037dd1154f1cf006e6fba93364c4f85d4c134a19 android.hardwar
6e904be0ddca5ae1de8eba020e6c38ed935ea7d80cd08f47787f137a0ca58555 android.hardware.neuralnetworks@1.3::IFencedExecutionCallback 6e904be0ddca5ae1de8eba020e6c38ed935ea7d80cd08f47787f137a0ca58555 android.hardware.neuralnetworks@1.3::IFencedExecutionCallback
2b0b10d2ea7a18a4048cd0eb83d35c19a817aeee95f65807fc31f4ef21381397 android.hardware.neuralnetworks@1.3::IPreparedModel 2b0b10d2ea7a18a4048cd0eb83d35c19a817aeee95f65807fc31f4ef21381397 android.hardware.neuralnetworks@1.3::IPreparedModel
eee3430cc86c97c7b407495863d8fb61da6f1a64b7721e77b9b4909b11b174e9 android.hardware.neuralnetworks@1.3::IPreparedModelCallback eee3430cc86c97c7b407495863d8fb61da6f1a64b7721e77b9b4909b11b174e9 android.hardware.neuralnetworks@1.3::IPreparedModelCallback
c9320b04ec302624985180a02d591bea5e435601fc411a6cabb58878e4e1ad68 android.hardware.neuralnetworks@1.3::types e442ab1b440327fe4e8a3b0b8ac6874e9bc6342e91fe976eb9fea77c63961ec8 android.hardware.neuralnetworks@1.3::types
b335c3c732c799b299fa61c6de6260ab4d20cbd0ec21acd6db14d8156c745d0b android.hardware.tv.tuner@1.0::types b335c3c732c799b299fa61c6de6260ab4d20cbd0ec21acd6db14d8156c745d0b android.hardware.tv.tuner@1.0::types
adab52e647d1a1ccfbdabdfc9c73352f8e834b61322e505bc6e3d3a0d3acc259 android.hardware.tv.tuner@1.0::IDemux adab52e647d1a1ccfbdabdfc9c73352f8e834b61322e505bc6e3d3a0d3acc259 android.hardware.tv.tuner@1.0::IDemux
548e1a16fc4f779346e14968a63cd6f160e1e2c8b8c99256b2bac24a24b52a9a android.hardware.tv.tuner@1.0::IDescrambler 548e1a16fc4f779346e14968a63cd6f160e1e2c8b8c99256b2bac24a24b52a9a android.hardware.tv.tuner@1.0::IDescrambler

View file

@ -5168,6 +5168,8 @@ enum OperationType : int32_t {
* * {@link OperandType::TENSOR_FLOAT16} * * {@link OperandType::TENSOR_FLOAT16}
* * {@link OperandType::TENSOR_FLOAT32} * * {@link OperandType::TENSOR_FLOAT32}
* *
* Supported tensor rank: from 1.
*
* Inputs: * Inputs:
* * 0: A tensor, specifying the input. May be zero-sized. * * 0: A tensor, specifying the input. May be zero-sized.
* * 1: A scalar, specifying the alpha parameter. * * 1: A scalar, specifying the alpha parameter.
@ -5197,6 +5199,8 @@ enum OperationType : int32_t {
* * {@link OperandType::TENSOR_QUANT8_ASYMM} * * {@link OperandType::TENSOR_QUANT8_ASYMM}
* * {@link OperandType::TENSOR_QUANT8_ASYMM_SIGNED} * * {@link OperandType::TENSOR_QUANT8_ASYMM_SIGNED}
* *
* Supported tensor rank: from 1.
*
* Inputs: * Inputs:
* * 0: A tensor, specifying the input. May be zero-sized. * * 0: A tensor, specifying the input. May be zero-sized.
* *
@ -5215,6 +5219,8 @@ enum OperationType : int32_t {
* * {@link OperandType::TENSOR_FLOAT32} * * {@link OperandType::TENSOR_FLOAT32}
* * {@link OperandType::TENSOR_INT32} * * {@link OperandType::TENSOR_INT32}
* *
* Supported tensor rank: from 1.
*
* Inputs: * Inputs:
* * 0: A 1-D tensor, specifying the desired output tensor shape. * * 0: A 1-D tensor, specifying the desired output tensor shape.
* * 1: A scalar, specifying the value to fill the output tensors with. * * 1: A scalar, specifying the value to fill the output tensors with.
@ -5248,6 +5254,8 @@ enum OperationType : int32_t {
* * {@link OperandType::TENSOR_QUANT8_SYMM} * * {@link OperandType::TENSOR_QUANT8_SYMM}
* * {@link OperandType::TENSOR_QUANT8_ASYMM_SIGNED} * * {@link OperandType::TENSOR_QUANT8_ASYMM_SIGNED}
* *
* Supported tensor rank: from 1.
*
* Inputs: * Inputs:
* * 0: The input tensor. * * 0: The input tensor.
* *