Home
last modified time | relevance | path

Searched refs:OutputType (Results 1 – 8 of 8) sorted by relevance

/frameworks/ml/nn/runtime/test/specs/V1_2/
Dquantized_lstm.mod.py52 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/
DDequantize.cpp38 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/
Dllvm-rs-cc.cpp71 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()
Dslang.h80 enum OutputType { enum
151 OutputType mOT;
213 OutputType OT);
240 void setOutputType(OutputType OT) { mOT = OT; } in setOutputType()
Dslang_backend.h67 Slang::OutputType mOT;
174 Slang::OutputType OT,
Drs_cc_options.h52 slang::Slang::OutputType mOutputType;
Dslang.cpp229 llvm::raw_ostream *OS, OutputType OT) { in createBackend()
Dslang_backend.cpp250 llvm::raw_ostream *OS, Slang::OutputType OT, in Backend()