Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for function_builder (0.3 sec)

  1. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

      }
    
      for (Operation* op : subgraph.partition_ops_) {
        function_builder.clone(*op, values_in_scope);
      }
      SmallVector<Value> return_operands;
      for (Value result : subgraph.FuncOutputs()) {
        Value cloned_output = values_in_scope.lookup(result);
        return_operands.push_back(cloned_output);
      }
      function_builder.create<mlir::func::ReturnOp>(new_func.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function_revival_state.h

    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    
    namespace tensorflow {
    
    // FunctionBuilder wraps the state needed for building a SignatureDefFunction.
    // This is mainly used in PartiallyRevivedObjects, which wraps partially
    // constructed Function and Resource objects.
    struct TFSignatureDefFunctionRevivalState {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top