dashboard
repositories
filestore
activity
search
login
speedprog
/
mtg/mtg_card_detector
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Merge branch 'master' of github.com:pjreddie/darknet
Joseph Redmon
2016-09-02
b8eb8b0a4016232c8da95c26501ac60ea9491901
[~speedprog/mtg/mtg_card_detector.git]
/
src
/
xnor_layer.h
1
2
3
4
5
6
7
8
9
10
#ifndef XNOR_LAYER_H
#define XNOR_LAYER_H
#include "layer.h"
#include "network.h"
layer make_xnor_layer(int batch, int h, int w, int c, int n, int size, int stride, int pad, ACTIVATION activation, int batch_normalization);
void forward_xnor_layer(const layer l, network_state state);
#endif