Home
last modified time | relevance | path

Searched refs:thread_row (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Ddepthwise_conv_op_gpu.h237 const int thread_row = threadIdx.z;
240 const int thread_pix = thread_row * in_width + thread_col;
253 const int data_pix = thread_row * tile_width + thread_col;
267 !kKnownEvenHeight && thread_row + (in_height & 1) == block_height;
526 const int thread_row = threadIdx.y;
530 const int thread_pix = thread_row * in_width + thread_col;
543 const int data_pix = thread_row * tile_width + thread_col;
561 !kKnownEvenHeight && thread_row + (in_height & 1) == block_height;
1212 const int thread_row = threadIdx.z;
1215 const int thread_pix = thread_row * in_width + thread_col;
[all …]
/external/perfetto/src/trace_processor/importers/common/
Dprocess_tracker.cc33 tables::ThreadTable::Row thread_row; in ProcessTracker() local
34 thread_row.tid = 0; in ProcessTracker()
35 context_->storage->mutable_thread_table()->Insert(thread_row); in ProcessTracker()