darknet  v3
Functions
local_layer.c File Reference
#include "local_layer.h"
#include "utils.h"
#include "im2col.h"
#include "col2im.h"
#include "blas.h"
#include "gemm.h"
#include <stdio.h>
#include <time.h>
Include dependency graph for local_layer.c:

Go to the source code of this file.

Functions

int local_out_height (local_layer l)
 
int local_out_width (local_layer l)
 
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 l, network net)
 
void backward_local_layer (local_layer l, network net)
 
void update_local_layer (local_layer l, update_args a)
 

Function Documentation

◆ backward_local_layer()

void backward_local_layer ( local_layer  l,
network  net 
)

Definition at line 122 of file local_layer.c.

◆ forward_local_layer()

void forward_local_layer ( const local_layer  l,
network  net 
)

Definition at line 91 of file local_layer.c.

◆ local_out_height()

int local_out_height ( local_layer  l)

Definition at line 10 of file local_layer.c.

◆ local_out_width()

int local_out_width ( local_layer  l)

Definition at line 18 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  l,
update_args  a 
)

Definition at line 167 of file local_layer.c.