Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for VerifySupportedArgs (0.16 sec)

  1. tensorflow/cc/experimental/libtf/function.cc

      }
      return tensorflow::errors::Unimplemented(
          "Only functions with inputs/outputs containing a single tensor or a tuple"
          " of tensors are supported right now.");
    }
    
    Status VerifySupportedArgs(TaggedValue args) {
      if (args.type() == TaggedValue::Type::TENSOR) {
        return ::tensorflow::OkStatus();
      }
      if (args.type() == TaggedValue::Type::TUPLE) {
        for (const auto& t : args.tuple()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top