Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Svd (0.26 sec)

  1. tensorflow/compiler/jit/compilability_check_util.cc

    bool RecursiveCompilabilityChecker::OpIsInaccurate(const Node& node) const {
      // b/127344411: SelfAdjointEigV2 and Svd precision issues.
      return node.type_string() == "SelfAdjointEigV2" ||
             node.type_string() == "Svd";
    }
    
    bool RecursiveCompilabilityChecker::OpIsSlow(const Node& node) const {
      // b/128001705: SelfAdjointEigV2 and Svd performance issues.
      // b/135640736: MatrixInverse performance issues.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.sun.xml.writer",
    				"application/vnd.sun.xml.writer.global",
    				"application/vnd.sun.xml.writer.template",
    				"application/vnd.sun.wadl+xml",
    				"application/vnd.sus-calendar",
    				"application/vnd.svd",
    				"application/vnd.swiftview-ics",
    				"application/vnd.symbian.install",
    				"application/vnd.syncml+xml",
    				"application/vnd.syncml.dm+wbxml",
    				"application/vnd.syncml.dm+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.sus-calendar">
        <glob pattern="*.sus"/>
        <glob pattern="*.susp"/>
      </mime-type>
      <mime-type type="application/vnd.svd">
        <glob pattern="*.svd"/>
      </mime-type>
      <mime-type type="application/vnd.swiftview-ics"/>
    
      <mime-type type="application/vnd.symbian.install">
        <magic priority="50">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. RELEASE.md

    *   Introducing `core/util/tensor_bundle` module: a module to efficiently
        serialize/deserialize tensors to disk. Will be used in TF's new checkpoint
        format.
    *   Added tf.svd for computing the singular value decomposition (SVD) of dense
        matrices or batches of matrices (CPU only).
    *   Added gradients for eigenvalues and eigenvectors computed using
        `self_adjoint_eig` or `self_adjoint_eigvals`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

          "BoolAttr":$keep_dims)>
      ];
    
      let hasFolder = 1;
    }
    
    def TF_SvdOp : TF_Op<"Svd", [Pure]> {
      let summary = [{
    Computes the singular value decompositions of one or more matrices.
      }];
    
      let description = [{
    Computes the SVD of each inner matrix in `input` such that
    `input[..., :, :] = u[..., :, :] * diag(s[..., :, :]) * transpose(v[..., :, :])`
    
    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