Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 103 of 103 for result_types (0.13 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          os << operand_type;
        }
      }
      os << ") -> (";
      if (!inst->getResultTypes().empty()) {
        bool first = true;
        for (Type result_type : inst->getResultTypes()) {
          os << (!first ? ", " : "");
          first = false;
          os << result_type;
        }
      }
      os << ")";
      // Print out attributes except for large elementsattributes (which should
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. RELEASE.md

        *   Add ellipsis (...) support for `tf.einsum()`.
        *   Add expand_composites argument to all `nest.*` methods.
        *   Added `strings.byte_split`.
        *   Add a new "result_type" parameter to `tf.strings.split`.
        *   Add name argument to `tf.string_split` and `tf.strings_split`.
        *   Extend `tf.strings.split` to support inputs with any rank.
        *   Added `tf.random.binomial`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      );
    
      let results = (outs
        Variadic<TF_Tensor>:$results
      );
    
      TF_DerivedOperandTypeListAttr operand_dtypes = TF_DerivedOperandTypeListAttr<0>;
      TF_DerivedResultTypeListAttr result_dtypes = TF_DerivedResultTypeListAttr<0>;
    }
    
    def TF_XlaDotOp : TF_Op<"XlaDot", [Pure, TF_NoConstantFold]> {
      let summary = "Wraps the XLA DotGeneral operator, documented at";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top