MagmaDNN  1.0
c++NeuralNetworkFramework
argmax.h
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include "tensor/tensor.h"
12 
13 
14 namespace magmadnn {
15 namespace math {
16 
23 template <typename T>
24 void argmax(Tensor<T> *x, int axis, Tensor<T> *out);
25 
26 }
27 }
Definition: addop.cpp:11
void argmax(Tensor< T > *x, int axis, Tensor< T > *out)
Definition: argmax.cpp:15