Home
last modified time | relevance | path

Searched refs:gridZ (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/compiler/mlir/tools/kernel_gen/
Dtf_rocm_runtime_wrappers.cc96 intptr_t gridZ, intptr_t blockX, in tfKernelGenLaunchKernel() argument
100 if (!gridX || !gridY || !gridZ) { in tfKernelGenLaunchKernel()
113 hipModuleLaunchKernel(function, gridX, gridY, gridZ, blockX, blockY, in tfKernelGenLaunchKernel()
Dtf_cuda_runtime_wrappers.cc95 intptr_t gridZ, intptr_t blockX, in tfKernelGenLaunchKernel() argument
99 if (!gridX || !gridY || !gridZ) { in tfKernelGenLaunchKernel()
112 cuLaunchKernel(function, gridX, gridY, gridZ, blockX, blockY, blockZ, in tfKernelGenLaunchKernel()
/external/llvm-project/mlir/tools/mlir-cuda-runner/
Dcuda-runtime-wrappers.cpp65 intptr_t gridY, intptr_t gridZ, in mgpuLaunchKernel() argument
69 CUDA_REPORT_IF_ERROR(cuLaunchKernel(function, gridX, gridY, gridZ, blockX, in mgpuLaunchKernel()
/external/llvm-project/mlir/tools/mlir-rocm-runner/
Drocm-runtime-wrappers.cpp65 intptr_t gridY, intptr_t gridZ, in mgpuLaunchKernel() argument
70 HIP_REPORT_IF_ERROR(hipModuleLaunchKernel(function, gridX, gridY, gridZ, in mgpuLaunchKernel()
/external/tensorflow/tensorflow/core/profiler/internal/gpu/
Dcupti_tracer.cc568 event.kernel_info.grid_z = kernel->gridZ; in AddKernelActivityEvent()