Home
last modified time | relevance | path

Searched refs:weights_val (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dfully_connected.h239 int8_t weights_val = *shuffled_weights_ptr++; in ShuffledFullyConnected() local
240 accum[i] += weights_val * input_val; in ShuffledFullyConnected()
286 int8_t weights_val = shuffled_weights_ptr[16 * i + j]; in ShuffledFullyConnected() local
287 accum[i][b] += weights_val * input_val; in ShuffledFullyConnected()
Dportable_tensor_utils.cc305 int8_t weights_val = input_to_gate_weights[row * n_input + col]; in PortableMatrixBatchVectorMultiplyAccumulateImpl() local
306 acc += input_val * weights_val; in PortableMatrixBatchVectorMultiplyAccumulateImpl()
357 int8_t weights_val = input_to_gate_weights[row * n_input + col]; in PortableMatrixBatchVectorMultiply() local
358 acc += (input_val - input_zeropoint) * weights_val; in PortableMatrixBatchVectorMultiply()
386 int8_t weights_val = hidden_to_output_weights[row * n_hidden + col]; in PortableMatrixBatchVectorMultiply() local
388 acc += input_val * weights_val; in PortableMatrixBatchVectorMultiply()
389 if (input_val * weights_val > 0 && acc < curr) { in PortableMatrixBatchVectorMultiply()
392 if (input_val * weights_val < 0 && acc > curr) { in PortableMatrixBatchVectorMultiply()
Dreference_ops.h741 int16 weights_val = in LstmCell() local
743 accum += input_val * weights_val; in LstmCell()
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Doptimized_ops.h692 int8 weights_val = *shuffled_weights_ptr++; in ShuffledFullyConnectedWorkerImpl()
693 accum[i] += weights_val * input_val; in ShuffledFullyConnectedWorkerImpl()
739 int8 weights_val = shuffled_weights_ptr[16 * i + j]; in ShuffledFullyConnectedWorkerImpl()
740 accum[i][b] += weights_val * input_val; in ShuffledFullyConnectedWorkerImpl()