Searched refs:to_split (Results 1 – 2 of 2) sorted by relevance
45 auto remove_spaces = [](std::string to_split) { in SameExceptSpaces() argument46 to_split.erase(std::remove(to_split.begin(), to_split.end(), ' '), in SameExceptSpaces()47 to_split.end()); in SameExceptSpaces()48 return to_split; in SameExceptSpaces()
243 Tensor to_split(DT_INT64, TensorShape({10, 2})); in TEST() local246 to_split.matrix<int64>()(i, j) = 2 * i + j; in TEST()252 TF_ASSERT_OK(tensor::Split(to_split, sizes, &splits)); in TEST()