Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

          }
        }
        if (auto tfl_operator =
                BuildOperator(real_inst, operands, results, intermediates)) {
          operation_index_to_operator_index.try_emplace(operation_index,
                                                        operators.size());
          operators.push_back(*tfl_operator);
          operators_in_mlir.push_back(real_inst);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          return errors::InvalidArgument(
              "Only feed output tensors of single output nodes are supported");
    
        // Collect mapping of OutputTensor to associated block arg.
        arg_nodes_to_values.try_emplace({arg_node.node, arg_node.index}, arg_def);
        island->getResult(0).replaceAllUsesWith(arg_def);
        // Erase control outputs from feed.
        auto control_uses = island->getResult(1).getUses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top