BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
blackcat
operations
blas.h
Go to the documentation of this file.
1
/* Project: BlackCat_Tensors
2
* Author: JosephJaspers
3
* Copyright 2018
4
*
5
* This Source Code Form is subject to the terms of the Mozilla Public
6
* License, v. 2.0. If a copy of the MPL was not distributed with this
7
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8
9
#ifndef BC_CORE_OPERATIONS_BLAS_H_
10
#define BC_CORE_OPERATIONS_BLAS_H_
11
12
#include "
operation_traits.h
"
13
#include "
tags.h
"
14
15
namespace
bc
{
16
namespace
oper {
17
18
template
<
class
system_tag>
19
struct
transpose
{};
20
21
template
<
class
system_tag>
22
struct
gemm
:
BLAS_Function
{
23
static
constexpr
int
tensor_dim = 2;
24
};
25
26
template
<
class
system_tag>
27
struct
gemv
:
BLAS_Function
{
28
static
constexpr
int
tensor_dim = 1;
29
};
30
31
template
<
class
system_tag>
32
struct
ger
:
BLAS_Function
{
33
static
constexpr
int
tensor_dim = 2;
34
};
35
36
template
<
class
system_tag>
37
struct
dot
:
BLAS_Function
{
38
static
constexpr
int
tensor_dim = 0;
39
};
40
41
}
42
}
43
44
45
46
#endif
/* BLAS_H_ */
bc::oper::transpose
Definition:
blas.h:19
operation_traits.h
bc::oper::gemv
Definition:
blas.h:27
bc::oper::ger
Definition:
blas.h:32
bc::oper::gemm
Definition:
blas.h:22
bc::oper::BLAS_Function
Definition:
tags.h:26
tags.h
bc::oper::dot
Definition:
blas.h:37
bc
The Evaluator determines if an expression needs to be greedily optimized.
Definition:
algorithms.h:22
Generated by
1.8.13