Home
last modified time | relevance | path

Searched refs:patchTensorBuffSize (Results 1 – 3 of 3) sorted by relevance

/external/eigen/unsupported/test/
Dcxx11_tensor_image_patch_sycl.cpp56 size_t patchTensorBuffSize =single_patch_col_major.size()*sizeof(DataType); in test_simple_image_patch_sycl() local
57 …u_data_single_patch_col_major = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_simple_image_patch_sycl()
60 …yDeviceToHost(single_patch_col_major.data(), gpu_data_single_patch_col_major, patchTensorBuffSize); in test_simple_image_patch_sycl()
71 patchTensorBuffSize =single_patch_row_major.size()*sizeof(DataType); in test_simple_image_patch_sycl()
72 …u_data_single_patch_row_major = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_simple_image_patch_sycl()
75 …yDeviceToHost(single_patch_row_major.data(), gpu_data_single_patch_row_major, patchTensorBuffSize); in test_simple_image_patch_sycl()
108 patchTensorBuffSize =entire_image_patch_col_major.size()*sizeof(DataType); in test_simple_image_patch_sycl()
109 …_entire_image_patch_col_major = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_simple_image_patch_sycl()
112 …t(entire_image_patch_col_major.data(), gpu_data_entire_image_patch_col_major, patchTensorBuffSize); in test_simple_image_patch_sycl()
123 patchTensorBuffSize =entire_image_patch_row_major.size()*sizeof(DataType); in test_simple_image_patch_sycl()
[all …]
Dcxx11_tensor_patch_sycl.cpp54 size_t patchTensorBuffSize =no_patch.size()*sizeof(DataType); in test_simple_patch_sycl() local
56 DataType* gpu_data_no_patch = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_simple_patch_sycl()
63 sycl_device.memcpyDeviceToHost(no_patch.data(), gpu_data_no_patch, patchTensorBuffSize); in test_simple_patch_sycl()
94 patchTensorBuffSize =single_patch.size()*sizeof(DataType); in test_simple_patch_sycl()
95 …taType* gpu_data_single_patch = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_simple_patch_sycl()
99 sycl_device.memcpyDeviceToHost(single_patch.data(), gpu_data_single_patch, patchTensorBuffSize); in test_simple_patch_sycl()
129 patchTensorBuffSize =twod_patch.size()*sizeof(DataType); in test_simple_patch_sycl()
130 …DataType* gpu_data_twod_patch = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_simple_patch_sycl()
134 sycl_device.memcpyDeviceToHost(twod_patch.data(), gpu_data_twod_patch, patchTensorBuffSize); in test_simple_patch_sycl()
185 patchTensorBuffSize =threed_patch.size()*sizeof(DataType); in test_simple_patch_sycl()
[all …]
Dcxx11_tensor_volume_patch_sycl.cpp54 size_t patchTensorBuffSize =single_voxel_patch_col_major.size()*sizeof(DataType); in test_single_voxel_patch_sycl() local
55 …_single_voxel_patch_col_major = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_single_voxel_patch_sycl()
58 …t(single_voxel_patch_col_major.data(), gpu_data_single_voxel_patch_col_major, patchTensorBuffSize); in test_single_voxel_patch_sycl()
70 patchTensorBuffSize =single_voxel_patch_row_major.size()*sizeof(DataType); in test_single_voxel_patch_sycl()
71 …_single_voxel_patch_row_major = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_single_voxel_patch_sycl()
74 …t(single_voxel_patch_row_major.data(), gpu_data_single_voxel_patch_row_major, patchTensorBuffSize); in test_single_voxel_patch_sycl()
126 size_t patchTensorBuffSize =entire_volume_patch_col_major.size()*sizeof(DataType); in test_entire_volume_patch_sycl() local
127 …entire_volume_patch_col_major = static_cast<DataType*>(sycl_device.allocate(patchTensorBuffSize)); in test_entire_volume_patch_sycl()
130 …entire_volume_patch_col_major.data(), gpu_data_entire_volume_patch_col_major, patchTensorBuffSize); in test_entire_volume_patch_sycl()
151 patchTensorBuffSize =entire_volume_patch_row_major.size()*sizeof(DataType); in test_entire_volume_patch_sycl()
[all …]