Пример #1
0
 ViewFill( const OutputView & arg_out , const_value_type & arg_in )
 {
   DeepCopy< dst_space , dst_space >( arg_out.ptr_on_device() , & arg_in ,
                                      sizeof(const_value_type) );
 }
Пример #2
0
 ViewRemap( const OutputView & arg_out , const InputView & arg_in )
 {
   DeepCopy< dst_space , src_space >( arg_out.ptr_on_device() ,
                                      arg_in.ptr_on_device() ,
                                      sizeof(value_type) );
 }