Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Chip (0.05 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasPCLMULQDQ        bool // PCLMULQDQ instruction - most often used for AES-GCM
    	HasPOPCNT           bool // Hamming weight instruction POPCNT.
    	HasRDRAND           bool // RDRAND instruction (on-chip random number generator)
    	HasRDSEED           bool // RDSEED instruction (on-chip random number generator)
    	HasSSE2             bool // Streaming SIMD extension 2 (always available on amd64)
    	HasSSE3             bool // Streaming SIMD extension 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        This pass sets the device ordinal attribute of the ops using the replica id
        attribute. This is run immediately after the replica_to_island pass which
        sets the replica id attribute of these ops. Note for single chip usecase,
        the pass will check if there is one op and sets the device ordinal attribute
        to be zero.
      }];
    }
    
    def ConvertReadonlyReferenceVariablesToResourceVariablesPass :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	EM_Z80           Machine = 220 /* Zilog Z80 */
    	EM_VISIUM        Machine = 221 /* Controls and Data Services VISIUMcore processor */
    	EM_FT32          Machine = 222 /* FTDI Chip FT32 high performance 32-bit RISC architecture */
    	EM_MOXIE         Machine = 223 /* Moxie processor family */
    	EM_AMDGPU        Machine = 224 /* AMD GPU architecture */
    	EM_RISCV         Machine = 243 /* RISC-V */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	//   to continue receiving logs, so it cannot be start or
    	//   stop;
    	if (hip.forceStart && hip.forceStop) ||
    		(hip.clientToken != "" && (hip.forceStart || hip.forceStop)) {
    		err = ErrInvalidRequest
    		return
    	}
    
    	// ignore body if clientToken is provided
    	if hip.clientToken == "" {
    		jerr := json.NewDecoder(r).Decode(&hip.hs)
    		if jerr != nil {
    			adminLogIf(GlobalContext, jerr, logger.ErrorKind)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_VariantTensor, [{A Tensor with type=DT_VARIANT containing the deduplication
    data. The tensor is an XLA nested tuple containing N elements (where N is
    the ratio of the number of embedding to tensor cores per TPU chip). Each
    element of the nested tuple is a tuple of rank 1 tensors. Each tensor either
    contains indices (DT_UINT32) for embedding lookup on the TensorCore or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    		return "unknown"
    	}
    
    	if len(ingress.service.Status.LoadBalancer.Ingress) > 0 {
    		return ingress.service.Status.LoadBalancer.Ingress[0].IP
    	}
    
    	if hIP := ingress.pods[0].Status.HostIP; hIP != "" {
    		return hIP
    	}
    
    	// The scope of this function is to get the IP from Kubernetes, we do not
    	// ask Docker or minikube for an IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. src/time/zoneinfo_read.go

    		return loadTzinfoFromZip(dir, name)
    	}
    	if dir != "" {
    		name = dir + "/" + name
    	}
    	return readFile(name)
    }
    
    // There are 500+ zoneinfo files. Rather than distribute them all
    // individually, we ship them in an uncompressed zip file.
    // Used this way, the zip file format serves as a commonly readable
    // container for the individual small files. We choose zip over tar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/controllermanager.go

    the system. In Kubernetes, a controller is a control loop that watches the shared
    state of the cluster through the apiserver and makes changes attempting to move the
    current state towards the desired state. Examples of controllers that ship with
    Kubernetes today are the replication controller, endpoints controller, namespace
    controller, and serviceaccounts controller.`,
    		PersistentPreRunE: func(*cobra.Command, []string) error {
    			// silence client-go warnings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	return m
    }
    
    // clangos lists the operating systems where we prefer clang to gcc.
    var clangos = []string{
    	"darwin", "ios", // macOS 10.9 and later require clang
    	"freebsd", // FreeBSD 10 and later do not ship gcc
    	"openbsd", // OpenBSD ships with GCC 4.2, which is now quite old.
    }
    
    // compilerEnvLookup returns the compiler settings for goos/goarch in map m.
    // kind is "CC" or "CXX".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Backward compatibility
    
    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top