MagmaDNN  1.0
c++NeuralNetworkFramework
concat.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 
22 template <typename T>
23 void concat(Tensor<T> *A, Tensor<T> *B, Tensor<T> *C, unsigned int axis);
24 
25 }
26 }
Definition: addop.cpp:11
void concat(Tensor< T > *A, Tensor< T > *B, Tensor< T > *C, unsigned int axis)
Definition: concat.cpp:15