Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FilterOutBlockArgControlDep (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

                  tensorflow::DeviceNameUtils::ParsedNameToString(parsed_name))));
        } else {
          output.push_back(attr);
        }
      }
      return mlir::success();
    }
    
    static void FilterOutBlockArgControlDep(
        ValueRange operands, llvm::SmallVectorImpl<Value> &filtered) {
      for (Value value : operands)
        if (!mlir::isa<mlir::BlockArgument>(value)) filtered.push_back(value);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top