Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for outLines (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/cluster_outlining.mlir

      func.return %0 : tensor<?xi32>
    }
    
    // CHECK: "tf_device.cluster_func"
    // CHECK-SAME: cluster_attr = "cluster_attr"
    
    // -----
    
    // Tests user-specified name is used as the outlined funciton name.
    
    // CHECK-LABEL: func @cluster_outlined_function_name
    func.func @cluster_outlined_function_name() -> tensor<?xi32> {
      %0 = "tf_device.cluster"() ({
        %1 = "tf.A"() : () -> tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/generate.go

    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *{{.P}}Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1+2*{{.p}}ElementLength]byte
    	return p.bytes(&out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/crypto/ed25519/ed25519.go

    // len(seed) is not [SeedSize]. This function is provided for interoperability
    // with RFC 8032. RFC 8032's private keys correspond to seeds in this
    // package.
    func NewKeyFromSeed(seed []byte) PrivateKey {
    	// Outline the function body so that the returned key can be stack-allocated.
    	privateKey := make([]byte, PrivateKeySize)
    	newKeyFromSeed(privateKey, seed)
    	return privateKey
    }
    
    func newKeyFromSeed(privateKey, seed []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/runtime/os3_plan9.go

    		exits((*byte)(add(unsafe.Pointer(note), 9))) // Strip "go: exit " prefix.
    	}
    	if flags&_SigPanic != 0 {
    		// Copy the error string from sigtramp's stack into m->notesig so
    		// we can reliably access it from the panic routines.
    		memmove(unsafe.Pointer(mp.notesig), unsafe.Pointer(note), uintptr(len(notestr)+1))
    		gp.sig = uint32(sig)
    		gp.sigpc = c.pc()
    
    		pc := c.pc()
    		sp := c.sp()
    
    		// If we don't recognize the PC as code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/p256.go

    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P256Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [1 + 2*p256ElementLength]byte
    	return p.bytes(&out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm.go

    // SEC 1, Version 2.0, Section 2.3.3. Note that the encoding of the point at
    // infinity is shorter than all other encodings.
    func (p *P256Point) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var out [p256UncompressedLength]byte
    	return p.bytes(&out)
    }
    
    func (p *P256Point) bytes(out *[p256UncompressedLength]byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/net/dnsclient.go

    		return false
    	}
    
    	return nonNumeric
    }
    
    // absDomainName returns an absolute domain name which ends with a
    // trailing dot to match pure Go reverse resolver and all other lookup
    // routines.
    // See golang.org/issue/12189.
    // But we don't want to add dots for local names from /etc/hosts.
    // It's hard to tell so we settle on the heuristic that names without dots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/path/path.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package path implements utility routines for manipulating slash-separated
    // paths.
    //
    // The path package should only be used for paths separated by forward
    // slashes, such as the paths in URLs. This package does not deal with
    // Windows paths with drive letters or backslashes; to manipulate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	pkgcfg := a.Objdir + "pkgcfg.txt"
    	covoutputs := a.Objdir + "coveroutfiles.txt"
    	odir := filepath.Dir(outfiles[0])
    	cv := filepath.Join(odir, "covervars.go")
    	outfiles = append([]string{cv}, outfiles...)
    	if err := b.writeCoverPkgInputs(a, pkgcfg, covoutputs, outfiles); err != nil {
    		return nil, err
    	}
    	args := []string{base.Tool("cover"),
    		"-pkgcfg", pkgcfg,
    		"-mode", mode,
    		"-var", varName,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // compilation device type.
    inline constexpr llvm::StringRef kCompileDeviceTypeAttr =
        "_xla_compile_device_type";
    // The attribute value speicifes the preferred outlined function name in
    // ClusterOutliningPass.
    inline constexpr llvm::StringRef kClusterOutlinedFunctionNameAttr =
        "_cluster_outlined_function_name";
    // Marks a node for replication. The attribute value indicates the replication
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top