Home
last modified time | relevance | path

Searched refs:block_size_z (Results 1 – 6 of 6) sorted by relevance

/libCEED/backends/hip/
H A Dceed-hip-compile.h22 …ed ceed, hipFunction_t kernel, int grid_size, int block_size_x, int block_size_y, int block_size_z,
26 int block_size_z, int shared_mem_size, void **args);
28 … int block_size_z, int shared_mem_size, bool *is_good_run, void **args);
H A Dceed-hip-compile.cpp220 …ernel, const int grid_size, const int block_size_x, const int block_size_y, const int block_size_z, in CeedRunKernelDim_Hip() argument
222 …duleLaunchKernel(kernel, grid_size, 1, 1, block_size_x, block_size_y, block_size_z, 0, NULL, args,… in CeedRunKernelDim_Hip()
230 … const int block_size_y, const int block_size_z, const int shared_mem_size, const bool throw_error, in CeedRunKernelDimSharedCore_Hip() argument
232 …duleLaunchKernel(kernel, grid_size, 1, 1, block_size_x, block_size_y, block_size_z, shared_mem_siz… in CeedRunKernelDimSharedCore_Hip()
254 … const int block_size_y, const int block_size_z, const int shared_mem_size, void **args) { in CeedRunKernelDimShared_Hip() argument
257 …Core_Hip(ceed, kernel, stream, grid_size, block_size_x, block_size_y, block_size_z, shared_mem_siz… in CeedRunKernelDimShared_Hip()
263 …const int block_size_y, const int block_size_z, const int shared_mem_size, bool *is_good_run, void… in CeedTryRunKernelDimShared_Hip() argument
264 …Core_Hip(ceed, kernel, stream, grid_size, block_size_x, block_size_y, block_size_z, shared_mem_siz… in CeedTryRunKernelDimShared_Hip()
/libCEED/backends/cuda/
H A Dceed-cuda-compile.h24 …function kernel, int grid_size, int block_size_x, int block_size_y, int block_size_z, void **args);
27 int block_size_z, int shared_mem_size, void **args);
29 … int block_size_z, int shared_mem_size, bool *is_good_run, void **args);
H A Dceed-cuda-compile.cpp462 …ernel, const int grid_size, const int block_size_x, const int block_size_y, const int block_size_z, in CeedRunKernelDim_Cuda() argument
464 …lDimShared_Cuda(ceed, kernel, NULL, grid_size, block_size_x, block_size_y, block_size_z, 0, args)); in CeedRunKernelDim_Cuda()
472 … const int block_size_y, const int block_size_z, const int shared_mem_size, const bool throw_error, in CeedRunKernelDimSharedCore_Cuda() argument
477 …= cuLaunchKernel(kernel, grid_size, 1, 1, block_size_x, block_size_y, block_size_z, shared_mem_siz… in CeedRunKernelDimSharedCore_Cuda()
488 … max_threads_per_block, block_size_x, block_size_y, block_size_z, shared_size_bytes, num_regs); in CeedRunKernelDimSharedCore_Cuda()
493 … max_threads_per_block, block_size_x, block_size_y, block_size_z, shared_size_bytes, num_regs); in CeedRunKernelDimSharedCore_Cuda()
503 const int block_size_z, const int shared_mem_size, void **args) { in CeedRunKernelDimShared_Cuda() argument
506 …ore_Cuda(ceed, kernel, stream, grid_size, block_size_x, block_size_y, block_size_z, shared_mem_siz… in CeedRunKernelDimShared_Cuda()
512 … const int block_size_z, const int shared_mem_size, bool *is_good_run, void **args) { in CeedTryRunKernelDimShared_Cuda() argument
513 …ore_Cuda(ceed, kernel, stream, grid_size, block_size_x, block_size_y, block_size_z, shared_mem_siz… in CeedTryRunKernelDimShared_Cuda()
/libCEED/backends/sycl/
H A Dceed-sycl-compile.sycl.cpp170 … const int block_size_z, const int shared_mem_size, void **kernel_args) { in CeedRunKernelDimSharedSycl() argument
171 sycl::range<3> local_range(block_size_z, block_size_y, block_size_x); in CeedRunKernelDimSharedSycl()
172 sycl::range<3> global_range(grid_size * block_size_z, block_size_y, block_size_x); in CeedRunKernelDimSharedSycl()
H A Dceed-sycl-compile.hpp22 … const int block_size_z, const int shared_mem_size, void **args);