Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 337 for z0 (0.02 sec)

  1. test/codegen/comparisons.go

    	// amd64:`CMPW\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray4(a, b [12]int8) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray5(a, b [15]byte) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/net/netip/export_test.go

    // Copyright 2021 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 netip
    
    import "unique"
    
    var (
    	Z0    = z0
    	Z4    = z4
    	Z6noz = z6noz
    )
    
    type Uint128 = uint128
    
    type AddrDetail = addrDetail
    
    func Mk128(hi, lo uint64) Uint128 {
    	return uint128{hi, lo}
    }
    
    func MkAddr(u Uint128, z unique.Handle[AddrDetail]) Addr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:15 UTC 2024
    - 730 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

    module {
      // CHECK-LABEL: func @argliveinotherislands
      // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<?xi32>)
      func.func @argliveinotherislands(%arg0: tensor<?xi32>) -> tensor<?xi32> {
        %0 = tf_executor.graph {
          // CHECK: %[[OTHER_ISLAND_OUTPUT:[a-z0-9]*]], %{{.*}} = tf_executor.island wraps "tf.D"
          %1:2 = tf_executor.island wraps "tf.D"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. src/syscall/mkerrors.sh

    		$2 ~ /^ELF_.*$/ {next}	# <asm/elf.h> contains ELF_ARCH, etc.
    
    		$2 !~ /^ETH_/ &&
    		$2 !~ /^EPROC_/ &&
    		$2 !~ /^EQUIV_/ &&
    		$2 !~ /^EXPR_/ &&
    		$2 ~ /^E[A-Z0-9_]+$/ ||
    		$2 ~ /^B[0-9_]+$/ ||
    		$2 ~ /^V[A-Z0-9]+$/ ||
    		$2 ~ /^CS[A-Z0-9]/ ||
    		$2 ~ /^I(SIG|CANON|CRNL|EXTEN|MAXBEL|STRIP|UTF8)$/ ||
    		$2 ~ /^IGN/ ||
    		$2 ~ /^IX(ON|ANY|OFF)$/ ||
    		$2 ~ /^IN(LCR|PCK)$/ ||
    		$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

    // CHECK:        tf_executor.fetch %[[ISLAND]] : tensor<i1>
    
    
    // Test empty/trivial islands are merged.
    // CHECK-LABEL: func @empty_islands
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i1>, %[[ARG_1:[a-z0-9]*]]: tensor<i1>)
    func.func @empty_islands(%arg0 : tensor<i1>, %arg1 : tensor<i1>) -> (tensor<i1>, tensor<i1>) {
      %0:2 = tf_executor.graph {
        %1:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  6. test/codegen/math.go

    	negone := -1.0
    
    	// amd64:"DIVSD"
    	z0 := zero / zero
    	// amd64:"MULSD"
    	z1 := zero * inf
    	// amd64:"SQRTSD"
    	z2 := math.Sqrt(negone)
    	return z0 + z1 + z2
    }
    
    func nanGenerate32() float32 {
    	zero := float32(0.0)
    	// amd64:-"DIVSS"
    	inf := 1 / zero // +inf. We can constant propagate this one.
    
    	// amd64:"DIVSS"
    	z0 := zero / zero
    	// amd64:"MULSS"
    	z1 := zero * inf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu-merge-variables-with-execute.mlir

    // CHECK-LABEL: func @non_interfering_accesses
    // CHECK-SAME: %[[ARG_0:[a-z0-9]+]]: tensor<*x!tf_type.resource<tensor<32xf32>>>
    // CHECK-SAME: %[[ARG_1:[a-z0-9]+]]: tensor<*x!tf_type.resource<tensor<64xf32>>>
    // CHECK-SAME: %[[ARG_2:[a-z0-9]+]]: tensor<32xf32>
    // CHECK-SAME: %[[ARG_3:[a-z0-9]+]]: tensor<*x!tf_type.resource<tensor<8xf32>>>
    // CHECK-SAME: %[[ARG_4:[a-z0-9]+]]: tensor<*x!tf_type.resource<tensor<2xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. src/syscall/mkpost.go

    		re := regexp.MustCompile("ptrace(Psw|Fpregs|Per)")
    		s = re.ReplaceAllString(s, "Ptrace$1")
    
    		// Replace padding fields inserted by cgo with blank identifiers.
    		re = regexp.MustCompile("Pad_cgo[A-Za-z0-9_]*")
    		s = re.ReplaceAllString(s, "_")
    
    		// We want to keep the X_ fields that are already consistently exported
    		// for the other linux GOARCH settings.
    		// Hide them and restore later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 02:59:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-func-attr.pbtxt

    # CHECK-LABEL:       func @main() {
    
    # Verify that the NameAttrList is properly turned into reference to functions on import
    # CHECK:    tf.Case
    # CHECK-SAME: branches = [@[[FOO:[a-z0-9]+]], @[[BAR:[a-z0-9]+]]]
    # CHECK-DAG:  func private @[[FOO]]()
    # CHECK-DAG:  func private @[[BAR]]()
    
    node {
      name: "predicate"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. operator/pkg/validate/common.go

    	// repository name to start with a component as defined by DomainRegexp
    	// and followed by an optional port.
    	domainComponentRegexp = match(`(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])`)
    
    	// DomainRegexp defines the structure of potential domain components
    	// that may be part of image names. This is purposely a subset of what is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top