Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 262 for 3xcomplex (3.29 sec)

  1. tensorflow/compiler/mlir/lite/utils/variables_utils.cc

                   .GetSubtypes()
                   .back();
      }
      return IsSupportedVariableType(type);
    }
    
    bool IsSupportedVariableType(ShapedType type) {
      auto element_type = type.getElementType();
      // Check complex types.
      if (auto complex_type = element_type.dyn_cast<mlir::ComplexType>()) {
        auto complex_element_type = complex_type.getElementType();
        if (complex_element_type.isF32() || complex_element_type.isF64())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 19:32:03 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    typedef GoUintGOINTBITS GoUint;
    typedef size_t GoUintptr;
    typedef float GoFloat32;
    typedef double GoFloat64;
    #ifdef _MSC_VER
    #include <complex.h>
    typedef _Fcomplex GoComplex64;
    typedef _Dcomplex GoComplex128;
    #else
    typedef float _Complex GoComplex64;
    typedef double _Complex GoComplex128;
    #endif
    
    /*
      static assertion to make sure the file is being used on architecture
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. architecture/standards/0002-avoid-using-java-serialization.md

    - **Flexibility and Control:**
    Java serialization offers limited control over the serialization process, such as excluding certain fields, customizing naming conventions, and handling complex data structures more gracefully.
    
    - **Security:**
    Java serialization poses security risks, especially related to deserialization vulnerabilities.
    
    - **Version Compatibility:**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/internal/reflectlite/tostring_test.go

    		return strconv.FormatUint(val.Uint(), 10)
    	case reflect.Float32, reflect.Float64:
    		return strconv.FormatFloat(val.Float(), 'g', -1, 64)
    	case reflect.Complex64, reflect.Complex128:
    		c := val.Complex()
    		return strconv.FormatFloat(real(c), 'g', -1, 64) + "+" + strconv.FormatFloat(imag(c), 'g', -1, 64) + "i"
    	case reflect.String:
    		return val.String()
    	case reflect.Bool:
    		if val.Bool() {
    			return "true"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. test/ken/cplx2.go

    // run
    
    // Copyright 2010 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.
    
    // Test arithmetic on complex numbers, including multiplication and division.
    
    package main
    
    const (
    	R = 5
    	I = 6i
    
    	C1 = R + I    // ADD(5,6)
    	C2 = R - I    // SUB(5,-6)
    	C3 = -(R + I) // ADD(5,6) NEG(-5,-6)
    	C4 = -(R - I) // SUB(5,-6) NEG(-5,6)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/walk.go

    	// When instrumenting, any expression might require function calls.
    	if base.Flag.Cfg.Instrumenting {
    		return true
    	}
    
    	isSoftFloat := func(typ *types.Type) bool {
    		return types.IsFloat[typ.Kind()] || types.IsComplex[typ.Kind()]
    	}
    
    	return ir.Any(n, func(n ir.Node) bool {
    		// walk should have already moved any Init blocks off of
    		// expressions.
    		if len(n.Init()) != 0 {
    			base.FatalfAt(n.Pos(), "mayCall %+v", n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. pkg/registry/rbac/validation/policy_compact.go

    func isSimpleResourceRule(rule *rbacv1.PolicyRule) (simpleResource, bool) {
    	resource := simpleResource{}
    
    	// If we have "complex" rule attributes, return early without allocations or expensive comparisons
    	if len(rule.ResourceNames) > 1 || len(rule.NonResourceURLs) > 0 {
    		return resource, false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    			check.error(&y, DivByZero, invalidOp+"division by zero")
    			x.mode = invalid
    			return
    		}
    
    		// check for divisor underflow in complex division (see go.dev/issue/20227)
    		if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
    			re, im := constant.Real(y.val), constant.Imag(y.val)
    			re2, im2 := constant.BinaryOp(re, token.MUL, re), constant.BinaryOp(im, token.MUL, im)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/validation/path/name_test.go

    			ExpectedMsg: "",
    		},
    		"valid,prefix": {
    			Name:        "foo.bar.baz",
    			Prefix:      true,
    			ExpectedMsg: "",
    		},
    
    		// Make sure mixed case, non DNS subdomain characters are tolerated
    		"valid complex": {
    			Name:        "sha256:ABCDEF012345@ABCDEF012345",
    			Prefix:      false,
    			ExpectedMsg: "",
    		},
    		// Make sure non-ascii characters are tolerated
    		"valid extended charset": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 13:49:29 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    			check.error(&y, DivByZero, invalidOp+"division by zero")
    			x.mode = invalid
    			return
    		}
    
    		// check for divisor underflow in complex division (see go.dev/issue/20227)
    		if x.mode == constant_ && y.mode == constant_ && isComplex(x.typ) {
    			re, im := constant.Real(y.val), constant.Imag(y.val)
    			re2, im2 := constant.BinaryOp(re, token.MUL, re), constant.BinaryOp(im, token.MUL, im)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top