MagmaDNN  1.0
c++NeuralNetworkFramework
product.h
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include "tensor/tensor.h"
12 
13 namespace magmadnn {
14 namespace math {
15 
21 template <typename T>
22 void product(Tensor<T> *A, Tensor<T> *B);
23 
30 template <typename T>
31 void product(Tensor<T> *A, Tensor<T> *B, Tensor<T> *C);
32 }
33 }
Definition: addop.cpp:11