HomeSort by relevance Sort by last modified time
    Searched refs:offset_w (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
depthtospace_op.cc 164 const int offset_w = (w % block_size); local
166 (offset_h * block_size + offset_w) * output_depth;
depthtospace_op_gpu.cu.cc 53 const int offset_w = w % block_size; local
54 const int offset_d = (offset_h * block_size + offset_w) * output_depth;
spacetodepth_op.cc 165 const int offset_w = (w % block_size); local
166 const int offset_d = (offset_h * block_size + offset_w) * input_depth;
spacetodepth_op_gpu.cu.cc 51 const int offset_w = w % block_size; local
52 const int offset_d = (offset_h * block_size + offset_w) * input_depth;

Completed in 137 milliseconds