Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TF_OpDefinitionBuilderSetAllowsUninitializedInput (0.46 sec)

  1. tensorflow/c/ops_test.cc

      TF_OpDefinitionBuilderAddAttr(builder, "foo2: string=\"my string\"");
      TF_OpDefinitionBuilderSetIsCommutative(builder, true);
      TF_OpDefinitionBuilderSetIsAggregate(builder, true);
      TF_OpDefinitionBuilderSetAllowsUninitializedInput(builder, true);
      std::string deprecation_msg = "use something else instead";
      TF_OpDefinitionBuilderDeprecated(builder, 4, deprecation_msg.c_str());
    
      TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  2. tensorflow/c/ops.h

    // initialize tensors for the first time should set this field to true, to allow
    // the Op to take an uninitialized Tensor as input.
    TF_CAPI_EXPORT extern void TF_OpDefinitionBuilderSetAllowsUninitializedInput(
        TF_OpDefinitionBuilder* builder, bool allows_uninitialized_input);
    
    // Adds a deprecation warning for the given op. This indicates to the user that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top