MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / GetBlackOpsSet

Function GetBlackOpsSet

serving/processor/framework/graph_optimizer.cc:32–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30namespace {
31
32std::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
55static const int gather_input_resource_slot = 0;
56static const int gather_input_indice_slot = 1;

Callers 2

GetStaticGraphOpsMethod · 0.85
RunMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected