Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for 3xcomplex (0.11 sec)

  1. tensorflow/compiler/jit/partially_decluster_pass.cc

    // where it will always be constant folded) host-side computation of f does not
    // regress performance in any significant manner.  We will have to revisit this
    // algorithm with a more complex cost model if this assumption turns out to be
    // incorrect.
    Status PartiallyDeclusterGraph(Graph* graph,
                                   const FunctionLibraryDefinition* flib_def,
                                   Env* env) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/sql-databases-peewee.md

    But if you need to change some of the defaults, support more than one predefined database, work with an async framework (like FastAPI), etc, you will need to add quite some complex extra code to override those defaults.
    
    Nevertheless, it's possible to do it, and here you'll see exactly what code you have to add to be able to use Peewee with FastAPI.
    
    !!! note "Technical Details"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    ├── settings.gradle
    ├── subproject-one
    │   └── build.gradle
    └── subproject-two
        └── build.gradle
    ----
    =====
    ====
    
    [[sec:build_sources]]
    == Use `buildSrc` to abstract imperative logic
    
    Complex build logic is usually a good candidate for being encapsulated either as custom task or binary plugin.
    Custom task and plugin implementations should not live in the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stdlib_test.go

    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("skipping in short mode")
    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test", "fixedbugs"),
    		"bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore
    		"bug398.go",      // types2 doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    		"issue11362.go",  // canonical import path check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/encoding/gob/encoder_test.go

    		"u0": []uint{1},
    		"u1": []uint8{1},
    		"u2": []uint16{1},
    		"u3": []uint32{1},
    		"u4": []uint64{1},
    		"f0": []float32{1},
    		"f1": []float64{1},
    		"c0": []complex64{complex(2, -2)},
    		"c1": []complex128{complex(2, float64(-2))},
    		"us": []uintptr{0},
    		"bo": []bool{false},
    		"st": []string{"s"},
    	}
    	enc := NewEncoder(new(bytes.Buffer))
    	err := enc.Encode(m)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    // build IDs and the overall compiler binary. See cmd/dist's cmdbootstrap
    // for the actual convergence sequence.
    //
    // The “one-element cache” purpose is a bit more complex for installed
    // binaries. For a binary, like cmd/gofmt, there are two steps: compile
    // cmd/gofmt/*.go into main.a, and then link main.a into the gofmt binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/typecheck.go

    	case ir.OMIN, ir.OMAX:
    		n := n.(*ir.CallExpr)
    		return tcMinMax(n)
    
    	case ir.OREAL, ir.OIMAG:
    		n := n.(*ir.UnaryExpr)
    		return tcRealImag(n)
    
    	case ir.OCOMPLEX:
    		n := n.(*ir.BinaryExpr)
    		return tcComplex(n)
    
    	case ir.OCLEAR:
    		n := n.(*ir.UnaryExpr)
    		return tcClear(n)
    
    	case ir.OCLOSE:
    		n := n.(*ir.UnaryExpr)
    		return tcClose(n)
    
    	case ir.ODELETE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/fmt.go

    			name = "untyped string"
    		case UntypedInt:
    			name = "untyped int"
    		case UntypedRune:
    			name = "untyped rune"
    		case UntypedFloat:
    			name = "untyped float"
    		case UntypedComplex:
    			name = "untyped complex"
    		default:
    			name = BasicTypeNames[t.Kind()]
    		}
    		b.WriteString(name)
    		return
    	}
    
    	if mode == fmtDebug {
    		b.WriteString(t.Kind().String())
    		b.WriteByte('-')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. src/net/conf.go

    // If that is not set, we check the netgo or netcgo build tag.
    // If none of those are set, we normally prefer the go resolver by default.
    // However, if the cgo resolver is available,
    // there is a complex set of conditions for which we prefer the cgo resolver.
    //
    // Other files define the netGoBuildTag, netCgoBuildTag, and cgoAvailable
    // constants.
    
    // conf is used to determine name resolution configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. src/go/types/assignments.go

    		// type or the blank identifier, the constant is first converted to type
    		// bool, rune, int, float64, complex128 or string respectively, depending
    		// on whether the value is a boolean, rune, integer, floating-point,
    		// complex, or string constant."
    		if isTypes2 {
    			if x.isNil() {
    				if T == nil {
    					check.errorf(x, UntypedNilUse, "use of untyped nil in %s", context)
    					x.mode = invalid
    					return
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top