MagmaDNN  1.0
c++NeuralNetworkFramework
meansquarederror.h
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include "compute/operation.h"
13 #include "compute/add/addop.h"
14 #include "compute/negative/negativeop.h"
15 #include "compute/scalarproduct/scalarproductop.h"
16 #include "compute/pow/powop.h"
17 #include "compute/reducesum/reducesumop.h"
18 
19 namespace magmadnn {
20 namespace op {
21 
22 template <typename T>
23 Operation<T> *meansquarederror(Operation<T> *ground_truth, Operation<T> *prediction);
24 
25 }
26 }
Definition: addop.cpp:11