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

Go to the source code of this file.

Typedefs

typedef layer maxpool_layer
 

Functions

image get_maxpool_image (maxpool_layer l)
 
maxpool_layer make_maxpool_layer (int batch, int h, int w, int c, int size, int stride, int padding)
 
void resize_maxpool_layer (maxpool_layer *l, int w, int h)
 
void forward_maxpool_layer (const maxpool_layer l, network net)
 
void backward_maxpool_layer (const maxpool_layer l, network net)
 

Typedef Documentation

◆ maxpool_layer

Definition at line 9 of file maxpool_layer.h.

Function Documentation

◆ backward_maxpool_layer()

void backward_maxpool_layer ( const maxpool_layer  l,
network  net 
)

Definition at line 116 of file maxpool_layer.c.

◆ forward_maxpool_layer()

void forward_maxpool_layer ( const maxpool_layer  l,
network  net 
)

Definition at line 79 of file maxpool_layer.c.

◆ get_maxpool_image()

image get_maxpool_image ( maxpool_layer  l)

Definition at line 5 of file maxpool_layer.c.

◆ make_maxpool_layer()

maxpool_layer make_maxpool_layer ( int  batch,
int  h,
int  w,
int  c,
int  size,
int  stride,
int  padding 
)

Definition at line 21 of file maxpool_layer.c.

◆ resize_maxpool_layer()

void resize_maxpool_layer ( maxpool_layer l,
int  w,
int  h 
)

Definition at line 54 of file maxpool_layer.c.