| 30 | namespace { |
| 31 | |
| 32 | std::unordered_set<std::string> GetBlackOpsSet() { |
| 33 | std::unordered_set<std::string> s = { |
| 34 | "Unique", |
| 35 | "SparseSegmentMean", |
| 36 | "SparseSegmentMeanGrad", |
| 37 | "SparseSegmentSum", |
| 38 | "SparseSegmentSumGrad", |
| 39 | "SparseSegmentSqrt", |
| 40 | "SparseSegmentSqrtNGrad", |
| 41 | "UnsortedSegmentSum", |
| 42 | "UnsortedSegmentSumGrad", |
| 43 | "UnsortedSegmentMax", |
| 44 | "UnsortedSegmentMaxGrad", |
| 45 | "HashTableV2", |
| 46 | "LookupTableFindV2", |
| 47 | "ParseExample", |
| 48 | "Bucketize" |
| 49 | // Add other ops |
| 50 | }; |
| 51 | |
| 52 | return s; |
| 53 | } |
| 54 | |
| 55 | static const int gather_input_resource_slot = 0; |
| 56 | static const int gather_input_indice_slot = 1; |
no outgoing calls
no test coverage detected