Home
last modified time | relevance | path

Searched refs:DestNumericT (Results 1 – 14 of 14) sorted by relevance

/dports/math/viennacl/ViennaCL-1.7.1/tests/src/
H A Dmatrix_convert.cpp84 typedef typename STLVectorT2::value_type DestNumericT; in test() typedef
88 … * internal_size2_dest + (start2_dest + j * inc2_dest)] = static_cast<DestNumericT>(std_src[(start… in test()
97 viennacl::matrix<DestNumericT> A(vcl_src); in test()
103 viennacl::matrix<DestNumericT, viennacl::column_major> A(vcl_src); in test()
H A Dmatrix_convert.cu84 typedef typename STLVectorT2::value_type DestNumericT; in test() typedef
88 … * internal_size2_dest + (start2_dest + j * inc2_dest)] = static_cast<DestNumericT>(std_src[(start… in test()
97 viennacl::matrix<DestNumericT> A(vcl_src); in test()
103 viennacl::matrix<DestNumericT, viennacl::column_major> A(vcl_src); in test()
H A Dvector_convert.cu72 typedef typename STLVectorT2::value_type DestNumericT; in test() typedef
75 … std_dest[start_dest + i * inc_dest] = static_cast<DestNumericT>(std_src[start_src + i * inc_src]); in test()
82 viennacl::vector<DestNumericT> x(vcl_src); in test()
H A Dvector_convert.cpp72 typedef typename STLVectorT2::value_type DestNumericT; in test() typedef
75 … std_dest[start_dest + i * inc_dest] = static_cast<DestNumericT>(std_src[start_src + i * inc_src]); in test()
82 viennacl::vector<DestNumericT> x(vcl_src); in test()
/dports/math/viennacl/ViennaCL-1.7.1/viennacl/linalg/host_based/
H A Dvector_operations.hpp67 template<typename DestNumericT, typename SrcNumericT>
68 void convert(vector_base<DestNumericT> & dest, vector_base<SrcNumericT> const & src) in convert()
70 DestNumericT * data_dest = detail::extract_raw_pointer<DestNumericT>(dest); in convert()
84 …data_dest[static_cast<vcl_size_t>(i)*inc_dest+start_dest] = static_cast<DestNumericT>(data_src[sta… in convert()
H A Dmatrix_operations.hpp57 template<typename DestNumericT, typename SrcNumericT>
58 void convert(matrix_base<DestNumericT> & mat1, matrix_base<SrcNumericT> const & mat2) in convert()
62 DestNumericT * data_A = detail::extract_raw_pointer<DestNumericT>(mat1); in convert()
83 …detail::matrix_array_wrapper<DestNumericT, row_major, false> wrapper_A(data_A, A_start1, A_st… in convert()
91 wrapper_A(row, col) = static_cast<DestNumericT>(wrapper_B(row, col)); in convert()
95 …detail::matrix_array_wrapper<DestNumericT, column_major, false> wrapper_A(data_A, A_start1, A… in convert()
103 wrapper_A(row, col) = static_cast<DestNumericT>(wrapper_B(row, col)); in convert()
/dports/math/viennacl/ViennaCL-1.7.1/viennacl/linalg/
H A Dvector_operations.hpp50 template<typename DestNumericT, typename SrcNumericT>
51 void convert(vector_base<DestNumericT> & dest, vector_base<SrcNumericT> const & src) in convert()
H A Dmatrix_operations.hpp53 template<typename DestNumericT, typename SrcNumericT>
54 void convert(matrix_base<DestNumericT> & dest, matrix_base<SrcNumericT> const & src) in convert()
/dports/math/viennacl/ViennaCL-1.7.1/viennacl/linalg/opencl/
H A Dmatrix_operations.hpp133 template<typename DestNumericT, typename SrcNumericT>
134 void convert(matrix_base<DestNumericT> & dest, matrix_base<SrcNumericT> const & src) in convert()
142 kernel_name += viennacl::ocl::type_to_string<DestNumericT>::apply(); in convert()
H A Dvector_operations.hpp55 template<typename DestNumericT, typename SrcNumericT>
56 void convert(vector_base<DestNumericT> & dest, vector_base<SrcNumericT> const & src) in convert()
61 kernel_name += viennacl::ocl::type_to_string<DestNumericT>::apply(); in convert()
/dports/math/viennacl/ViennaCL-1.7.1/viennacl/linalg/cuda/
H A Dvector_operations.hpp47 template<typename DestNumericT, typename SrcNumericT>
48 __global__ void convert_kernel(DestNumericT * dest, unsigned int start_dest, unsigned int inc_… in convert_kernel()
58 template<typename DestNumericT, typename SrcNumericT>
59 void convert(vector_base<DestNumericT> & dest, vector_base<SrcNumericT> const & src) in convert()
H A Dmatrix_operations_row.hpp33 template<typename DestNumericT, typename SrcNumericT>
35 DestNumericT * A, in convert_row_kernel()
H A Dmatrix_operations_col.hpp33 template<typename DestNumericT, typename SrcNumericT>
34 __global__ void convert_col_kernel(DestNumericT * A, in convert_col_kernel()
H A Dmatrix_operations.hpp56 template<typename DestNumericT, typename SrcNumericT>
57 void convert(matrix_base<DestNumericT> & mat1, matrix_base<SrcNumericT> const & mat2) in convert()