Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for splay_ (0.25 sec)

  1. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

      T splat_x, splat_y;
      if (!GetSplatValue(x, splat_x) || !GetSplatValue(y, splat_y)) {
        return false;
      }
    
      return splat_x == splat_y;
    }
    
    // Clones an operation with new operands while keeping attributes.
    SmallVector<Value> CloneOpWithReplacedOperands(OpBuilder& builder,
                                                   Operation* op,
                                                   ArrayRef<Value> new_operands);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/internal/bytealg/index_ppc64x.s

    	BGE    index2to16   // Remaining string 2<=len<=16
    	MOVD   $0xff00, R21 // Set up mask for upcoming loop
    	MTVSRD R21, V25     // Move mask to Vreg
    	VSPLTH $3, V25, V31 // Splat mask
    	VSPLTH $0, V0, V1   // Splat 1st two bytes of sep
    	VSPLTB $2, V0, V8   // Splat 3rd byte of sep
    
    	// Loop to process 3 byte separator.
    	// string[0:16] is in V2
    	// string[2:18] is in V3
    	// sep[0:2] splatted in V1
    	// sec[3] splatted in v8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

      Type etype = type.getElementType();
    
      // Evaluate for element types.
      if (!mlir::isa<ElementType>(etype)) {
        return {};
      }
    
      // Special case for folding splats no matter how large.
      // Only covers the case of both attrs being splats; operation-specific cases
      // like adding a zero or multiplying by one are handled elsewhere.
      SplatElementsAttr splatLhs = mlir::dyn_cast<SplatElementsAttr>(lhs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

            }
        ]
    
    
    def getProduct(product_id):
        products = getProducts()
        if product_id + 1 > len(products):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

    #undef CONVERT_FLAT
    }
    
    // Returns the number of elements present in this TensorProto, or -1 if that
    // could not be determined. This might be less than the shape of the proto might
    // indicate, if we're storing a splat tensor.
    int NumberOfMaterializedElements(const TensorProto& tensor) {
      if (!tensor.tensor_content().empty()) return -1;
        // We don't know which element type this protocol buffer is storing, and the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. docs/bucket/versioning/README.md

      public static void main(String[] args)
          throws IOException, NoSuchAlgorithmException, InvalidKeyException {
        try {
          /* play.min.io for test and development. */
          MinioClient minioClient =
              MinioClient.builder()
                  .endpoint("https://play.min.io")
                  .credentials("Q3AM3UQ867SPQQA43P2F", "zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG")
                  .build();
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. cmd/signature-v4-utils_test.go

    	signedHeaders = append(signedHeaders, "expect")
    	// expected header values.
    	expectedHost := "play.min.io:9000"
    	expectedContentSha256 := "1234abcd"
    	expectedTime := UTCNow().Format(iso8601Format)
    	expectedTransferEncoding := "gzip"
    	expectedExpect := "100-continue"
    
    	r, err := http.NewRequest(http.MethodGet, "http://play.min.io:9000", nil)
    	if err != nil {
    		t.Fatal("Unable to create http.Request :", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

               (SameValue $rem, $rem2),
               (FloatOrDefaultCompare $compare_type, $cst),
               (FloatOrDefaultCompare $compare_type1, $cst)]>;
    
    // Converts a dag of HLOs representing floor_div with a splat constant to
    // tf.FloorDiv. The pattern matched executes the following computation:
    // This particular pattern matches multiplication with the reciprocal of the
    // constant instead of dividing by the constant.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

        peer.sendFrame().settings(settings1)
        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 0)
        peer.acceptFrame() // PING
        peer.play()
    
        // Play it back.
        val connection =
          Http2Connection.Builder(true, TaskRunner.INSTANCE)
            .socket(peer.openSocket())
            .pushObserver(Http2ConnectionTest.IGNORE)
            .listener(realConnection)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    	Suffix      string // example suffix, without leading '_' (only populated by NewFromFiles)
    	Doc         string // example function doc string
    	Code        ast.Node
    	Play        *ast.File // a whole program version of the example
    	Comments    []*ast.CommentGroup
    	Output      string // expected output
    	Unordered   bool
    	EmptyOutput bool // expect empty output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top