Skip to content

applications/src/layers/nnlinear_backend_baseline.h

Functions

Name
void nnlinear_backend_baseline(const network_fp32_t * n)
MNIST baseline network handling data transfers & function calls for a single core execution and no fancy optimizations like SSRs or FREP.

Functions Documentation

function nnlinear_backend_baseline

void nnlinear_backend_baseline(
    const network_fp32_t * n
)

MNIST baseline network handling data transfers & function calls for a single core execution and no fancy optimizations like SSRs or FREP.

Parameters:

  • n network_t struct holding all addresses and parameters which are in FP32 format

Source code

// Copyright 2020 ETH Zurich and University of Bologna.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0

#include "network.h"

void nnlinear_backend_baseline(const network_fp32_t *n);

Updated on 2023-06-19 at 09:43:56 +0000