Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for input_span (0.55 sec)

  1. tensorflow/c/ops.cc

      delete reinterpret_cast<OpDefBuilder*>(builder);
    }
    
    void TF_OpDefinitionBuilderAddInput(TF_OpDefinitionBuilder* builder,
                                        const char* input_spec) {
      reinterpret_cast<OpDefBuilder*>(builder)->Input(input_spec);
    }
    
    void TF_OpDefinitionBuilderAddOutput(TF_OpDefinitionBuilder* builder,
                                         const char* output_spec) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/c/ops.h

    //   <number> is the name of an attr with type "int".
    //   <type-list> is the name of an attr with type "list(type)".
    TF_CAPI_EXPORT extern void TF_OpDefinitionBuilderAddInput(
        TF_OpDefinitionBuilder* builder, const char* input_spec);
    
    // Adds an output to this TF_OpDefinitionBuilder.
    // The spec has form "<name>:<type-expr>" or "<name>:Ref(<type-expr>)"
    // where <name> matches regexp [a-z][a-z0-9_]* and <type-expr> can be:
    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