Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for returns_ (0.25 sec)

  1. src/cmd/compile/internal/ssa/rewriteARM.go

    		return rewriteValueARM_OpARMSLLconst(v)
    	case OpARMSRA:
    		return rewriteValueARM_OpARMSRA(v)
    	case OpARMSRAcond:
    		return rewriteValueARM_OpARMSRAcond(v)
    	case OpARMSRAconst:
    		return rewriteValueARM_OpARMSRAconst(v)
    	case OpARMSRL:
    		return rewriteValueARM_OpARMSRL(v)
    	case OpARMSRLconst:
    		return rewriteValueARM_OpARMSRLconst(v)
    	case OpARMSRR:
    		return rewriteValueARM_OpARMSRR(v)
    	case OpARMSUB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteS390X.go

    	case OpDiv32u:
    		return rewriteValueS390X_OpDiv32u(v)
    	case OpDiv64:
    		return rewriteValueS390X_OpDiv64(v)
    	case OpDiv64F:
    		v.Op = OpS390XFDIV
    		return true
    	case OpDiv64u:
    		v.Op = OpS390XDIVDU
    		return true
    	case OpDiv8:
    		return rewriteValueS390X_OpDiv8(v)
    	case OpDiv8u:
    		return rewriteValueS390X_OpDiv8u(v)
    	case OpEq16:
    		return rewriteValueS390X_OpEq16(v)
    	case OpEq32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK:           return %[[VAL_2]] : tensor<1x32x10x32xi32>
    // CHECK:         }
    func.func @biasAdd_NHWC(%arg0: tensor<1x32x10x32xi32>, %arg1: tensor<32xi32>) -> tensor<1x32x10x32xi32> {
      %0 = "chlo.broadcast_add"(%arg0, %arg1) {broadcast_dimensions = array<i64: 3>} : (tensor<1x32x10x32xi32>, tensor<32xi32>) -> tensor<1x32x10x32xi32>
      func.return %0 : tensor<1x32x10x32xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    func.func @identity(%arg0: tensor<1xi32>) -> tensor<1xi32> {
      // CHECK-NEXT:  return %arg0 : tensor<1xi32>
      %0 = "tf.Identity"(%arg0) : (tensor<1xi32>) -> tensor<1xi32>
      func.return %0: tensor<1xi32>
    }
    
    // -----
    
    // CHECK-LABEL: func @identityN
    func.func @identityN(%arg0: tensor<1xi32>, %arg1: tensor<1xf32>) -> (tensor<1xi32>, tensor<1xf32>) {
      // CHECK-NEXT:  return %arg0, %arg1 : tensor<1xi32>, tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      func.return %1 : tensor<*xf32>
    
      // CHECK-LABEL: NotReorderAddWithUnranked
      // CHECK: tfl.add
      // CHECK: tfl.add
    }
    
    func.func @RemoveCast(%arg0: tensor<2x2xf32>) -> tensor<2x2xf32> {
      %1 = "tfl.cast"(%arg0) : (tensor<2x2xf32>) -> tensor<2x2xf32>
      func.return %1 : tensor<2x2xf32>
    
      // CHECK-LABEL: RemoveCast
      // CHECK: return %arg0
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/cbean/cq/bs/BsUserCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "user";
        }
    
        @Override
        public String xgetAliasName() {
            return "user";
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 326.1K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-61734`](https://youtrack.jetbrains.com/issue/KT-61734) SLC: wildcard suppression not honored
    - [`KT-65112`](https://youtrack.jetbrains.com/issue/KT-65112) Symbol Light Classes don't support annotations on type parameters
    - [`KT-65843`](https://youtrack.jetbrains.com/issue/KT-65843) K2: Light method returns `kotlin.Unit` type for `TestResult` return type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go

    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return nfkcValues[c0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go

    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return nfkcValues[c0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 376.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    			return 0, 3 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c3), 4
    	}
    	// Illegal rune
    	return 0, 1
    }
    
    // lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s.
    // s must start with a full and valid UTF-8 encoded rune.
    func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 {
    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return nfkcValues[c0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 376.8K bytes
    - Viewed (0)
Back to top