#include "PALUtils.h"
#include "Params.h"
#include <type_traits>
Go to the source code of this file.
|
template<typename InputType , typename WeightType , typename OutputType , typename BiasType > |
void | luci_interpreter_pal::FullyConnected (const FullyConnectedParams ¶ms, const int32_t *input_shape, const InputType *input_data, const int32_t *filter_shape, const WeightType *filter_data, const BiasType *bias_data, const int32_t *output_shape, OutputType *output_data, uint32_t output_dims_count, uint32_t weights_dims_count) |
|
template<typename WeightType > |
void | luci_interpreter_pal::FullyConnected (const FullyConnectedParams ¶ms, const int32_t *input_shape, const float *input_data, const int32_t *filter_shape, const WeightType *filter_data, const float *bias_data, const int32_t *output_shape, float *output_data, uint32_t output_dims_count, uint32_t weights_dims_count) |
|