Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Dset_kernels.cc306 string set_operation_str; in SetOperationFromContext() local
307 if (!ctx->GetAttr("set_operation", &set_operation_str).ok()) { in SetOperationFromContext()
310 std::transform(set_operation_str.begin(), set_operation_str.end(), in SetOperationFromContext()
311 set_operation_str.begin(), ::tolower); in SetOperationFromContext()
312 if ("a-b" == set_operation_str) { in SetOperationFromContext()
315 if ("b-a" == set_operation_str) { in SetOperationFromContext()
318 if ("intersection" == set_operation_str) { in SetOperationFromContext()
321 if ("union" != set_operation_str) { in SetOperationFromContext()
323 set_operation_str, ".")); in SetOperationFromContext()