Home
last modified time | relevance | path

Searched refs:GetTemporary (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/
Dbidirectional_sequence_lstm.cc1248 use_aux_input ? GetTemporary(context, node, kAuxInputQuantized) in Eval()
1289 fw_scratch_buffer, GetTemporary(context, node, kInputScalingFactors), in Eval()
1290 GetTemporary(context, node, kAuxInputScalingFactors), in Eval()
1291 GetTemporary(context, node, kOutputStateScalingFactors), in Eval()
1296 GetTemporary(context, node, kInputZeroPoints), in Eval()
1297 GetTemporary(context, node, kAuxInputZeroPoints), in Eval()
1298 GetTemporary(context, node, kOutputStateZeroPoints), fw_row_sums, in Eval()
1330 bw_scratch_buffer, GetTemporary(context, node, kInputScalingFactors), in Eval()
1331 GetTemporary(context, node, kAuxInputScalingFactors), in Eval()
1332 GetTemporary(context, node, kOutputStateScalingFactors), in Eval()
[all …]
Dlstm.cc2015 /*output_offset=*/0, GetTemporary(context, node, kScratchBuffer), in Eval()
2016 GetTemporary(context, node, kInputScalingFactors), in Eval()
2018 GetTemporary(context, node, kOutputStateScalingFactors), in Eval()
2019 GetTemporary(context, node, kProductScalingFactors), in Eval()
2020 GetTemporary(context, node, kRecoveredCellWeights), in Eval()
2021 GetTemporary(context, node, kInputQuantized), in Eval()
2023 GetTemporary(context, node, kOutputStateQuantized), in Eval()
2024 GetTemporary(context, node, kCellStateQuantized), output_state, in Eval()
2025 cell_state, GetTemporary(context, node, kAccumScratch), output, in Eval()
2026 GetTemporary(context, node, kInputZeroPoints), in Eval()
[all …]
Dunidirectional_sequence_lstm.cc1382 GetTemporary(context, node, kInputScalingFactors), in Eval()
1384 GetTemporary(context, node, kOutputStateScalingFactors), in Eval()
1385 GetTemporary(context, node, kProductScalingFactors), in Eval()
1386 GetTemporary(context, node, kRecoveredCellWeights), in Eval()
1387 GetTemporary(context, node, kInputQuantized), in Eval()
1389 GetTemporary(context, node, kOutputStateQuantized), in Eval()
1390 GetTemporary(context, node, kCellStateQuantized), output_state, in Eval()
1391 cell_state, GetTemporary(context, node, kAccumScratch), output, in Eval()
1392 GetTemporary(context, node, kInputZeroPoints), in Eval()
1394 GetTemporary(context, node, kOutputStateZeroPoints), row_sums, in Eval()
Dbatch_matmul.cc611 TfLiteTensor* transposed_rhs = GetTemporary(context, node, 1); in GetTempRhs()
626 TfLiteTensor* transposed_lhs = GetTemporary(context, node, 0); in GetTempLhs()
675 TransposeRowsColumns(context, rhs, GetTemporary(context, node, 1)); in Eval()
680 TransposeRowsColumns(context, lhs, GetTemporary(context, node, 0)); in Eval()
Dkernel_util.h105 TfLiteTensor* GetTemporary(TfLiteContext* context, const TfLiteNode* node,
Dtranspose_conv.cc585 ? GetTemporary(context, node, data->col2im_index) in Eval()
589 ? GetTemporary(context, node, data->transposed_weights_index) in Eval()
Dkernel_util.cc145 TfLiteTensor* GetTemporary(TfLiteContext* context, const TfLiteNode* node, in GetTemporary() function
Dbidirectional_sequence_rnn.cc819 use_aux_input ? GetTemporary(context, node, kAuxInputQuantized) in Eval()
/external/angle/src/compiler/translator/tree_ops/
DRewriteDfdy.cpp151 const TType *vec2Type = StaticType::GetTemporary<EbtFloat, 2>(); in visitAggregateWithRotation()
/external/angle/src/compiler/translator/
DStaticType.h204 constexpr const TType *GetTemporary() in GetTemporary() function
DTranslatorVulkan.cpp310 const TType *vec2Type = StaticType::GetTemporary<EbtFloat, 2>(); in AddBresenhamEmulationVS()
659 const TType *vec2Type = StaticType::GetTemporary<EbtFloat, 2>(); in AddBresenhamEmulationFS()
/external/tensorflow/tensorflow/lite/tools/optimize/calibration/custom_logging_ops/
Dlstm.cc592 TfLiteTensor* scratch_buffer = GetTemporary(context, node, /*index=*/0); in lstm_eval()