Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for function_ref (0.26 sec)

  1. tensorflow/c/eager/c_api.cc

      tensorflow::FunctionDef function_def;
      if (!function_def.ParseFromArray(serialized_function_def, size)) {
        status->status =
            tensorflow::errors::InvalidArgument("Invalid FunctionDef proto");
        return;
      }
    
      AnnotateEagerRuntimeConstructionContext(function_def);
      status->status = tensorflow::unwrap(ctx)->AddFunctionDef(function_def);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                  n->DebugString());
        }
      }
      return absl::OkStatus();
    }
    
    // Cheap check to tell whether FunctionDef contains a lifted argument.
    bool HasLiftedArgs(const FunctionDef& function_def) {
      return absl::c_any_of(function_def.node_def(), [](const NodeDef& node_def) {
        return (node_def.op() == "Placeholder" &&
                node_def.attr().find(kXlaLiftedArgOutsideCompilationAttrName) !=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      // the graph def function library.
      for (const FunctionDef& function :
           bundle.meta_graph_def().graph_def().library().function()) {
        std::unique_ptr<TFConcreteFunction> concrete_function;
        TF_RETURN_IF_ERROR(TFConcreteFunction::Create(/*function_def=*/&function,
                                                      /*captures=*/{},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/compilability_check_util_test.cc

             {"f",
              FunctionDefHelper::FunctionRef("IdentityRef", {{"T", DT_FLOAT}})},
             {kXlaMustCompileAttr, true}}}},
          /*ret_def=*/{{"z", "func_call:output:0"}});
    
      *library.add_function() = identity_func;
      *library.add_function() = call_identity;
    
      Output in = ops::Placeholder(root, DT_FLOAT);
      NameAttrList b_name_attr;
      b_name_attr.set_name("CallIdentity");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

                                                &capture_handle));
        captures.push_back(capture_handle);
      }
      // TODO(bmzhao): Create Metadata here
      return TFConcreteFunction::Create(/*function_def=*/builder.fdef,
                                        /*captures=*/std::move(captures),
                                        /*metadata=*/{},
                                        /*ctx=*/ctx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_kernel_creator_test.cc

      return std::make_shared<NodeProperties>(nullptr, std::move(node_def), dummy,
                                              dummy);
    }
    
    // Create a FunctionDef that takes one resource and one regular param
    FunctionDef XTimesY() {
      return FunctionDefHelper::Define(
          // Name
          "XTimesY",
          // Args
          {"x: float", "y: resource"},
          // Return values
          {"z: float"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 01:39:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.h

      // Decomposes the op in the NodeDef to a set of primitive ops according to the
      // decompose library in the context. Wrap the decomposed result in a
      // FunctionDef.
      absl::StatusOr<FunctionDef> ExpandNode(const NodeDef& node_def,
                                             StringPiece func_name);
    
      // Runs the decompose passes on the user_module.
      Status DecomposeGraph(mlir::ModuleOp user_module);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 11:12:54 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/graph_function.h

    namespace graph {
    using tensorflow::AbstractFunction;
    // Thin wrapper around a FunctionDef.
    class GraphFunction : public AbstractFunction {
     public:
      explicit GraphFunction(FunctionDef fdef);
      ~GraphFunction() override;
    
      // GraphFunction maybe stay alive for the duration of the returned
      // FunctionDef.
      Status GetFunctionDef(const FunctionDef** fdef) override;
    
      // Returns a shared reference to the wrapped function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

      DummyCapture(ImmediateExecutionContext* ctx, int8_t value)
          : TensorHandleConvertible(
                testing::CreateTensorHandle(ctx, DT_FLOAT, {2, 4}, value)) {}
    };
    
    FunctionDef FuncDefWithNumInputsOutputs(int num_inputs, int num_outputs) {
      FunctionDef func;
      OpDef* signature = func.mutable_signature();
      for (int i = 0; i < num_inputs; ++i) {
        signature->add_input_arg();
      }
      for (int i = 0; i < num_outputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. tensorflow/c/eager/abstract_function.h

      // Returns which subclass is this instance of.
      AbstractFunctionKind getKind() const { return kind_; }
    
      // Returns the AbstractFunction as a FunctionDef.
      virtual Status GetFunctionDef(const FunctionDef**) = 0;
    
      // Returns a shared reference to the wrapped function.
      virtual absl::StatusOr<core::RefCountPtr<FunctionRecord>>
      GetFunctionRecord() = 0;
    
     private:
      const AbstractFunctionKind kind_;
    };
    
    using AbstractFunctionPtr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top