ViennaCL - The Vienna Computing Library
1.7.1
Free open-source GPU-accelerated linear algebra and solver library.
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
geforce_gtx_750_ti.hpp
Go to the documentation of this file.
1
#ifndef VIENNACL_DEVICE_SPECIFIC_BUILTIN_DATABASE_DEVICES_GPU_NVIDIA_3_GEFORCE_GTX_750_TI_HPP_
2
#define VIENNACL_DEVICE_SPECIFIC_BUILTIN_DATABASE_DEVICES_GPU_NVIDIA_3_GEFORCE_GTX_750_TI_HPP_
3
4
/* =========================================================================
5
Copyright (c) 2010-2016, Institute for Microelectronics,
6
Institute for Analysis and Scientific Computing,
7
TU Wien.
8
Portions of this software are copyright by UChicago Argonne, LLC.
9
10
-----------------
11
ViennaCL - The Vienna Computing Library
12
-----------------
13
14
Project Head: Karl Rupp rupp@iue.tuwien.ac.at
15
16
(A list of authors and contributors can be found in the manual)
17
18
License: MIT (X11), see file LICENSE in the base directory
19
============================================================================= */
20
21
#include "
viennacl/device_specific/templates/matrix_product_template.hpp
"
22
23
24
#include "
viennacl/device_specific/forwards.h
"
25
#include "
viennacl/device_specific/builtin_database/common.hpp
"
26
27
namespace
viennacl{
28
namespace
device_specific{
29
namespace
builtin_database{
30
namespace
devices{
31
namespace
gpu{
32
namespace
nvidia{
33
namespace
maxwell
{
34
namespace
geforce_gtx_750_ti{
35
36
inline
void
add_8B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'T'>
,
char_to_type<'T'>
)
37
{
38
db.
add_8B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,2,8,128,1,1,2,
FETCH_FROM_GLOBAL_STRIDED
,
FETCH_FROM_GLOBAL_STRIDED
,0,0));
39
}
40
41
inline
void
add_8B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'T'>
,
char_to_type<'N'>
)
42
{
43
db.
add_8B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,8,32,32,2,1,2,
FETCH_FROM_GLOBAL_CONTIGUOUS
,
FETCH_FROM_GLOBAL_CONTIGUOUS
,0,0));
44
}
45
46
inline
void
add_8B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'N'>
,
char_to_type<'T'>
)
47
{
48
db.
add_8B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,16,8,32,1,8,2,
FETCH_FROM_GLOBAL_CONTIGUOUS
,
FETCH_FROM_GLOBAL_CONTIGUOUS
,0,0));
49
}
50
51
inline
void
add_8B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'N'>
,
char_to_type<'N'>
)
52
{
53
db.
add_8B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,16,8,32,1,2,2,
FETCH_FROM_GLOBAL_STRIDED
,
FETCH_FROM_GLOBAL_STRIDED
,0,0));
54
}
55
56
inline
void
add_4B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'T'>
,
char_to_type<'T'>
)
57
{
58
db.
add_4B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,4,32,16,8,2,4,
FETCH_FROM_LOCAL
,
FETCH_FROM_GLOBAL_STRIDED
,16,4));
59
}
60
61
inline
void
add_4B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'T'>
,
char_to_type<'N'>
)
62
{
63
db.
add_4B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,16,16,16,4,2,8,
FETCH_FROM_LOCAL
,
FETCH_FROM_LOCAL
,16,16));
64
}
65
66
inline
void
add_4B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'N'>
,
char_to_type<'T'>
)
67
{
68
db.
add_4B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,16,16,32,4,8,4,
FETCH_FROM_LOCAL
,
FETCH_FROM_LOCAL
,32,16));
69
}
70
71
inline
void
add_4B
(
database_type<matrix_product_template::parameters_type>
& db,
char_to_type<'N'>
,
char_to_type<'N'>
)
72
{
73
db.
add_4B
(
nvidia_id
, CL_DEVICE_TYPE_GPU,
ocl::maxwell
,
"GeForce GTX 750 Ti"
,
matrix_product_template::parameters_type
(1,16,16,16,8,4,4,
FETCH_FROM_LOCAL
,
FETCH_FROM_LOCAL
,16,16));
74
}
75
76
77
}
78
}
79
}
80
}
81
}
82
}
83
}
84
}
85
#endif
viennacl::ocl::nvidia_id
Definition:
device_utils.hpp:49
viennacl::device_specific::builtin_database::database_type
Definition:
common.hpp:44
matrix_product_template.hpp
viennacl::device_specific::builtin_database::database_type::add_8B
database_type< ParamT > & add_8B(vendor_id_type p0, device_type p1, ocl::device_architecture_family p2, device_name_type p3, ParamT const &p5)
Definition:
common.hpp:83
viennacl::device_specific::FETCH_FROM_GLOBAL_STRIDED
Definition:
template_base.hpp:50
common.hpp
viennacl::device_specific::builtin_database::database_type::add_4B
database_type< ParamT > & add_4B(vendor_id_type p0, device_type p1, ocl::device_architecture_family p2, device_name_type p3, ParamT const &p5)
Definition:
common.hpp:76
viennacl::device_specific::char_to_type
Definition:
forwards.h:260
forwards.h
Forwards declaration.
viennacl::ocl::maxwell
Definition:
device_utils.hpp:61
viennacl::device_specific::FETCH_FROM_LOCAL
Definition:
template_base.hpp:49
viennacl::device_specific::builtin_database::devices::gpu::nvidia::maxwell::geforce_gtx_750_ti::add_4B
void add_4B(database_type< matrix_product_template::parameters_type > &db, char_to_type<'T'>, char_to_type<'T'>)
Definition:
geforce_gtx_750_ti.hpp:56
viennacl::device_specific::builtin_database::devices::gpu::nvidia::maxwell::geforce_gtx_750_ti::add_8B
void add_8B(database_type< matrix_product_template::parameters_type > &db, char_to_type<'T'>, char_to_type<'T'>)
Definition:
geforce_gtx_750_ti.hpp:36
viennacl::device_specific::FETCH_FROM_GLOBAL_CONTIGUOUS
Definition:
template_base.hpp:51
viennacl::device_specific::template_base::parameters_type
Definition:
template_base.hpp:57
viennacl
device_specific
builtin_database
devices
gpu
nvidia
maxwell
geforce_gtx_750_ti.hpp
Generated on Wed Jan 20 2016 22:32:39 for ViennaCL - The Vienna Computing Library by
1.8.6