Searched refs:OutputType (Results 1 – 8 of 8) sorted by relevance
/frameworks/ml/nn/runtime/test/specs/V1_2/ |
D | quantized_lstm.mod.py | 52 OutputType = ("TENSOR_QUANT8_ASYMM", (n_batch, n_output), 1 / 128, 128) variable 54 prev_output = Input("prevOutput", OutputType) 57 output = Output("output", OutputType) 151 OutputType = ("TENSOR_QUANT8_ASYMM", (n_batch, n_output), 1 / 128, 128) variable 153 prev_output = Input("prevOutput", OutputType) 156 output = Output("output", OutputType)
|
/frameworks/ml/nn/common/operations/ |
D | Dequantize.cpp | 38 template <typename InputType, typename OutputType> 39 bool compute(const InputType* inputData, const Shape& inputShape, OutputType* outputData) { in compute() 45 outputData[i] = static_cast<OutputType>(scale * (value - zeroPoint)); in compute() 50 template <typename OutputType> 51 bool computePerChannel(const int8_t* inputData, const Shape& inputShape, OutputType* outputData) { in computePerChannel() 72 outputData[i] = static_cast<OutputType>(scale * (value - zeroPoint)); in computePerChannel()
|
/frameworks/compile/slang/ |
D | llvm-rs-cc.cpp | 71 slang::Slang::OutputType OutputType, in DetermineOutputFile() argument 73 if (OutputType == slang::Slang::OT_Nothing) in DetermineOutputFile() 88 if (OutputType == slang::Slang::OT_Dependency) { in DetermineOutputFile() 97 switch (OutputType) { in DetermineOutputFile()
|
D | slang.h | 80 enum OutputType { enum 151 OutputType mOT; 213 OutputType OT); 240 void setOutputType(OutputType OT) { mOT = OT; } in setOutputType()
|
D | slang_backend.h | 67 Slang::OutputType mOT; 174 Slang::OutputType OT,
|
D | rs_cc_options.h | 52 slang::Slang::OutputType mOutputType;
|
D | slang.cpp | 229 llvm::raw_ostream *OS, OutputType OT) { in createBackend()
|
D | slang_backend.cpp | 250 llvm::raw_ostream *OS, Slang::OutputType OT, in Backend()
|