aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/strided_slice_op_inst_6.cc
Commit message (Collapse)AuthorAge
* Cleanup license headerGravatar A. Unique TensorFlower2016-09-29
| | | | Change: 134714467
* Reduce the compilation time of strided_sliceGravatar Andrew Selle2016-07-15
- Break strided_slice op into multiple translation units by dimension - Refactor code to allow instantiation from multiple translation units by using a free function instead of a class member - strided_slice_op.cc used to take 163-180s. Now the aggregate of all translation units is 196s but each strided_slice_op_inst_* takes between 24-34s each - cast to a canonical type for each POD size to avoid redundant instantiations for say int32 and float32. Change: 127578995