23.11
|
#include "arm_compute/graph.h"
#include "ValidateExample.h"
#include "utils/command_line/CommandLineParser.h"
Go to the source code of this file.
Data Structures | |
struct | TensorParams |
Structure holding all the input tensor graph parameters. More... | |
struct | VerificationParams |
Structure holding all the verification graph parameters. More... | |
struct | FrameworkParams |
Structure holding all the common graph parameters. More... | |
struct | CommonParams |
Structure holding all the graph Example parameters. More... | |
struct | ConvolutionParams |
Structure holding all the Convolution layer graph parameters. More... | |
struct | FullyConnectedParams |
Structure holding all the fully_connected layer graph parameters. More... | |
struct | ExampleParams |
Structure holding all the graph Example parameters. More... | |
class | CommonGraphValidateOptions |
CommonGraphValidateOptions command line options used to configure the graph examples. More... | |
class | VerifyAccessor< D > |
Graph example validation accessor class. More... | |
class | GraphValidateExample< LayerT, OptionsT, VerifyAccessorT > |
Namespaces | |
arm_compute | |
Copyright (c) 2017-2023 Arm Limited. | |
arm_compute::utils | |
Enumerations | |
enum | ConvolutionPaddingMode { Valid, Same, Manual } |
Functions | |
inline ::std::istream & | operator>> (::std::istream &stream, ConvolutionPaddingMode &Mode) |
Stream Input operator for the ConvolutionPaddingMode type. More... | |
inline ::std::ostream & | operator<< (::std::ostream &os, ConvolutionPaddingMode Mode) |
Formatted output of the ConvolutionPaddingMode type. More... | |
PadStrideInfo | calculate_convolution_padding (ExampleParams params) |
Calculate stride information. More... | |
void | consume_common_graph_parameters (CommonGraphValidateOptions &options, CommonParams &common_params) |
Consumes the consume_common_graph_parameters graph options and creates a structure containing any information. More... | |
std::unique_ptr< graph::ITensorAccessor > | get_accessor (const TensorParams &tensor, PixelValue lower, PixelValue upper, const std::random_device::result_type seed=0) |
Generates appropriate accessor according to the specified graph parameters. More... | |
template<template< typename D > class VerifyAccessorT> | |
std::unique_ptr< graph::ITensorAccessor > | get_verify_accessor (ExampleParams params) |
Generates appropriate convolution verify accessor. More... | |