Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for try_emplace (0.17 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        bool use_stablehlo_constant) {
      // Populate from metadata.
      ControlNodes control_nodes;
      for (const auto [from, to] : control_edges) {
        control_nodes.try_emplace(from);
        control_nodes[to].incoming.insert(from);
      }
    
      llvm::SmallVector<mlir::Type, 2> ret_types;
      llvm::SmallVector<mlir::Type, 4> input_types;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        bool vars_initialized,
        llvm::SmallDenseMap<llvm::StringRef, PartitionedCallLiftingInfo>*
            lifted_callees) {
      auto emplace_res = lifted_callees->try_emplace(callee.getName(),
                                                     PartitionedCallLiftingInfo());
      if (emplace_res.second) {
        // Unseen callee. Perform resource lifting on it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top