Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for shared_name_to_resource (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_duplicate_resource_ops.cc

      llvm::StringMap<Operation*> shared_name_to_resource;
      llvm::SmallVector<Operation*> ops_to_remove;
      for (Operation& op : graph_op.GetBody().without_terminator()) {
        Operation* resource_op = GetResourceOp(&op);
        if (!resource_op) continue;
        StringRef shared_name = GetSharedName(resource_op);
        if (shared_name.empty()) continue;
    
        if (!shared_name_to_resource.contains(shared_name)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 04:26:16 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top