darknet  v3
Typedefs | Functions
local_layer.h File Reference
#include "cuda.h"
#include "image.h"
#include "activations.h"
#include "layer.h"
#include "network.h"
Include dependency graph for local_layer.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef layer local_layer
 

Functions

local_layer make_local_layer (int batch, int h, int w, int c, int n, int size, int stride, int pad, ACTIVATION activation)
 
void forward_local_layer (const local_layer layer, network net)
 
void backward_local_layer (local_layer layer, network net)
 
void update_local_layer (local_layer layer, update_args a)
 
void bias_output (float *output, float *biases, int batch, int n, int size)
 
void backward_bias (float *bias_updates, float *delta, int batch, int n, int size)
 

Typedef Documentation

◆ local_layer

typedef layer local_layer

Definition at line 10 of file local_layer.h.

Function Documentation

◆ backward_bias()

void backward_bias ( float *  bias_updates,
float *  delta,
int  batch,
int  n,
int  size 
)

Definition at line 435 of file convolutional_layer.c.

◆ backward_local_layer()

void backward_local_layer ( local_layer  layer,
network  net 
)

Definition at line 122 of file local_layer.c.

◆ bias_output()

void bias_output ( float *  output,
float *  biases,
int  batch,
int  n,
int  size 
)

◆ forward_local_layer()

void forward_local_layer ( const local_layer  layer,
network  net 
)

Definition at line 91 of file local_layer.c.

◆ make_local_layer()

local_layer make_local_layer ( int  batch,
int  h,
int  w,
int  c,
int  n,
int  size,
int  stride,
int  pad,
ACTIVATION  activation 
)

Definition at line 26 of file local_layer.c.

◆ update_local_layer()

void update_local_layer ( local_layer  layer,
update_args  a 
)

Definition at line 167 of file local_layer.c.