void operator()

in tensorflow_time_two/cc/kernels/time_two_kernels.cc [32:36]


  void operator()(const CPUDevice& d, int size, const T* in, T* out) {
    for (int i = 0; i < size; ++i) {
      out[i] = 2 * in[i];
    }
  }