Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for input_span (0.14 sec)

  1. tensorflow/c/experimental/saved_model/internal/concrete_function.cc

      tensorflow::ImmediateOpPtr call_op;
      absl::Span<tensorflow::AbstractTensorHandle* const> input_span(
          reinterpret_cast<tensorflow::AbstractTensorHandle**>(
              tensorflow::unwrap(inputs)),
          static_cast<size_t>(num_inputs));
      status->status = tensorflow::unwrap(func)->MakeCallOp(input_span, &call_op);
      if (!status->status.ok()) {
        return nullptr;
      }
      return tensorflow::wrap(call_op.release());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 06:55:27 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/signature_def_function.cc

      tensorflow::ImmediateOpPtr call_op;
      absl::Span<tensorflow::AbstractTensorHandle* const> input_span(
          reinterpret_cast<tensorflow::AbstractTensorHandle**>(
              tensorflow::unwrap(inputs)),
          static_cast<size_t>(num_inputs));
      status->status = tensorflow::unwrap(func)->MakeCallOp(input_span, &call_op);
      if (!status->status.ok()) {
        return nullptr;
      }
      return tensorflow::wrap(call_op.release());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

      for (auto elem : vals.getValues<float>())
        if (elem != 0.0f) return false;
      return true;
    }
    
    bool IsF32Splat(Attribute input_splat) {
      if (!input_splat) return false;
      auto val = dyn_cast_or_null<DenseElementsAttr>(input_splat);
      if (val) {
        return !val.empty() && val.getElementType().isF32() && val.isSplat();
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. RELEASE.md

            shapes with `None` entries for axes that are meant to be dynamic). You
            can also disable the input checking entirely by setting
            `model.input_spec = None`.
        *   Several changes have been made to
            `tf.keras.mixed_precision.experimental`. Note that it is now recommended
            to use the non-experimental `tf.keras.mixed_precision` API.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top