Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for function_ref (0.22 sec)

  1. tensorflow/c/c_api_experimental.cc

    //
    // If `mutate_proto_func` is non-NULL, run it over each FunctionDef proto,
    // before creating a TF_Function out of the possibly mutated proto.
    static std::vector<UniqueFuncPtr> CreateFunctionsFromTextProto(
        const char* text_proto,
        std::function<void(FunctionDef*)>* mutate_proto_func, TF_Status* status) {
      tensorflow::GraphDef gdef;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_context.h

      // available to be called/referenced by its name in this context.
      virtual Status RegisterFunction(AbstractFunction*) = 0;
      // Remove a function. 'func' argument is the name of a previously added
      // FunctionDef. The name is in fdef.signature.name.
      virtual Status RemoveFunction(const string& func) = 0;
    
     private:
      const AbstractContextKind kind_;
    };
    
    namespace internal {
    struct AbstractContextDeleter {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:16:58 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. tensorflow/c/eager/unified_api_testutil.cc

        core::RefCountPtr<AbstractFunction> scoped_func;
        // Returning null tensors from a tf.function is not supported, so we keep
        // track of indices in the model's outputs are nullptr in this set.
        // The FunctionDef only outputs the non-null tensors. We later pad the
        // function op outputs to have nullptrs at the `null_indices`.
        absl::flat_hash_set<int> null_indices;
        {
          AbstractContextPtr func_ctx(BuildFunction(fn_name));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/mlir.h

                               const std::string &pass_pipeline,
                               bool show_debug_info, TF_Status *status);
    
    // Simple wrapper to support tf.mlir.experimental.convert_function.
    // Load FunctionDef (binary or textual proto format), convert to MLIR, and
    // (optionally) optimize the module before returning it as a string.
    // This is an early experimental API, ideally we should return a wrapper object
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

    // This pass looks at the graph and all associated FunctionDefs, and turns
    // traditional control flow structure (Switch/Merge/etc.) into functional
    // control flow structure (XlaIf/XlaWhile). Following passes must
    // handle those FunctionDef correctly.
    
    // POST_REWRITE_FOR_EXEC passes that support auto-clustering to enable XLA:
    
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::POST_REWRITE_FOR_EXEC, 5,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      return MakeWrite(
          scope, ops::Const(scope.WithOpName("ValueToAssign" + id), 1.0f), id);
    }
    
    FunctionDefLibrary CreateFunctionDefLibWithConstFunction(const string& name) {
      FunctionDefLibrary fdef_lib;
      FunctionDef func = FunctionDefHelper::Create(
          /*function_name=*/name, /*in_def=*/{}, /*out_def=*/{"out: float"},
          /*attr_def*/
          {}, /*node_def=*/{FunctionDefHelper::Const("one", 1.0f)},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_cluster_util_test.cc

          ops::Const(s.WithOpName("constant_normal_pco"), Input::Initializer(0.0));
      s.graph()->AddControlEdge(call.operation.node(), constant.node());
    }
    
    void AddRefFunctionFunctionDef(FunctionDefLibrary* fdef_lib) {
      FunctionDef make_ref_float = FunctionDefHelper::Define(
          "RefFloatFn", {}, {"r:float"}, {},
          {{{"var"},
            "VariableV2",
            {},
            {{"dtype", DT_FLOAT}, {"shape", TensorShape({})}}},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // Find subgraphs marked with 'group_attribute', and build a new
      // subgraph, one for each value of 'group_attribute'.
      Status SplitIntoSubgraphs(FunctionLibraryDefinition* library);
    
      // Build a FunctionDef for each subgraph, and add it 'library'. The values of
      // the 'group_attribute' annotations become the function names.
      // If 'reuse_existing_functions' is set, use an existing function with the
      // same name, if any.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/force_xla_constants_on_host_pass_test.cc

    }
    
    TEST(ForceXlaConstantsOnHostPassTest, Simple) {
      GraphDefBuilder b(GraphDefBuilder::kFailImmediately);
      Scope root = Scope::NewRootScope().ExitOnError();
      FunctionDefLibrary library;
    
      FunctionDef called_func =
          FunctionDefHelper::Create("TransposeCall",
                                    /*in_def=*/{"a:float", "b:int32"},
                                    /*out_def=*/{"c:float"}, {},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

        if (absl::StartsWith(orig_op->op_name(), skip)) return absl::OkStatus();
      }
    
      tf_core_op_expansion_node_counter->GetCell()->IncrementBy(1);
    
      LOG_FIRST_N(INFO, 1) << "Run Node Expansion Passes";
    
      // Get the FunctionDef and insert that into the context
      const NodeDef& ndef = orig_op->MutableAttrs()->BuildNodeDef();
      auto& ctx = orig_op->EagerContext();
      Fprint128 cache_key =
          orig_op->MutableAttrs()->CacheKey(orig_op->DeviceName());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top