-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMaxPoolingTriangularLayer.h
More file actions
28 lines (27 loc) · 992 Bytes
/
MaxPoolingTriangularLayer.h
File metadata and controls
28 lines (27 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once
#include <iostream>
#include <vector>
#include "SpatiallySparseLayer.h"
#include "Rng.h"
class MaxPoolingTriangularLayer : public SpatiallySparseLayer {
public:
int inSpatialSize;
int outSpatialSize;
int poolSize;
int poolStride;
int dimension;
int S;
MaxPoolingTriangularLayer(cudaMemStream &memStream, int poolSize,
int poolStride, int dimension);
void preprocess(SpatiallySparseBatch &batch,
SpatiallySparseBatchInterface &input,
SpatiallySparseBatchInterface &output);
void forwards(SpatiallySparseBatch &batch,
SpatiallySparseBatchInterface &input,
SpatiallySparseBatchInterface &output);
void backwards(SpatiallySparseBatch &batch,
SpatiallySparseBatchInterface &input,
SpatiallySparseBatchInterface &output, float learningRate,
float momentum);
int calculateInputSpatialSize(int outputSpatialSize);
};