/dports/math/viennacl/ViennaCL-1.7.1/tests/src/ |
H A D | matrix_convert.cpp | 84 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 D | matrix_convert.cu | 84 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 D | vector_convert.cu | 72 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 D | vector_convert.cpp | 72 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 D | vector_operations.hpp | 67 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 D | matrix_operations.hpp | 57 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 D | vector_operations.hpp | 50 template<typename DestNumericT, typename SrcNumericT> 51 void convert(vector_base<DestNumericT> & dest, vector_base<SrcNumericT> const & src) in convert()
|
H A D | matrix_operations.hpp | 53 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 D | matrix_operations.hpp | 133 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 D | vector_operations.hpp | 55 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 D | vector_operations.hpp | 47 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 D | matrix_operations_row.hpp | 33 template<typename DestNumericT, typename SrcNumericT> 35 DestNumericT * A, in convert_row_kernel()
|
H A D | matrix_operations_col.hpp | 33 template<typename DestNumericT, typename SrcNumericT> 34 __global__ void convert_col_kernel(DestNumericT * A, in convert_col_kernel()
|
H A D | matrix_operations.hpp | 56 template<typename DestNumericT, typename SrcNumericT> 57 void convert(matrix_base<DestNumericT> & mat1, matrix_base<SrcNumericT> const & mat2) in convert()
|