Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getpfr0 (0.22 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          if (axis != i / 2) return failure();
          ++i;
        }
    
        // Check whether first tranpose's perm has [2, 1, 0, 3].
        DenseIntElementsAttr perm;
        if (!matchPattern(transpose_first.getPerm(), m_Constant(&perm)))
          return failure();
        SmallVector<int64_t, 4> axes;
        for (const auto &axis_int : perm.getValues<APInt>()) {
          axes.push_back(axis_int.getSExtValue());
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          }
        }
      }
    
      // Permutations defined by constant operations.
      DenseIntElementsAttr perm0;
      DenseIntElementsAttr perm1;
      if (!matchPattern(op.getPerm(), m_Constant(&perm0)) ||
          !matchPattern(transpose.getPerm(), m_Constant(&perm1)))
        return {};
    
      // With permutation indices that cancel each other
      if (!AreCancellablePermutations(perm0, perm1)) return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"url('https://[::1]/').getHostname() == '::1'",
    				"url('/path').getHostname() == ''",
    				"url('https://example.com:80/').getPort() == '80'",
    				"url('https://example.com/').getPort() == ''",
    				"url('/path').getPort() == ''",
    				"url('https://example.com/path').getEscapedPath() == '/path'",
    				"url('https://example.com/with space/').getEscapedPath() == '/with%20space/'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                            log.println("DFS redirect: " + dr);
    
                        UniAddress addr = UniAddress.getByName(dr.server);
                        SmbTransport trans = SmbTransport.getSmbTransport(addr, url.getPort());
                        /* This is a key point. This is where we set the "tree" of this file which
                         * is like changing the rug out from underneath our feet.
                         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	}
    	if redirect.Scheme != "" && redirect.Scheme != "http" && redirect.Scheme != "https" {
    		return fmt.Errorf(`invalid redirect scheme, must be "http" or "https"`)
    	}
    	if redirect.GetPort() > 0 {
    		if err := agent.ValidatePort(int(redirect.GetPort())); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    func validateHTTPDirectResponse(directResponse *networking.HTTPDirectResponse) (errs Validation) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    mlir::LogicalResult TransposeOp::verify() {
      TransposeOp op = *this;
      auto input_type = op.getInput().getType().cast<ShapedType>();
      auto perm_type = op.getPerm().getType().cast<ShapedType>();
      auto output_type = op.getOutput().getType().cast<ShapedType>();
      if (input_type.hasStaticShape() && perm_type.hasStaticShape()) {
        if (perm_type.getNumElements() != input_type.getRank()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                             r1);
    
      // Verify that output types are of rank one and matches the computed result
      // shape.
      auto r0_ty = mlir::dyn_cast<RankedTensorType>(op.getR0().getType());
      auto r1_ty = mlir::dyn_cast<RankedTensorType>(op.getR1().getType());
      if (r0_ty && r0_ty.hasStaticShape() && r0_ty.getDimSize(0) != r0.size())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.testing.jacoco.plugins.JacocoTaskExtension.getOutput()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoTaskExtension.java:0)
    Method <org.gradle.testing.jacoco.plugins.JacocoTaskExtension.getPort()> does not have raw return type assignable to org.gradle.api.provider.Property in (JacocoTaskExtension.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top