Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 251 for approx (0.26 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

        SymbolTable table(root);
        (void)table.renameToUnique(func, {});
    
        rewriter.setInsertionPointAfter(output_mul);
        auto composite_attrs = rewriter.getDictionaryAttr(
            {rewriter.getNamedAttr("approx", rewriter.getBoolAttr(false))});
        auto composite_op = rewriter.create<stablehlo::CompositeOp>(
            output_mul.getLoc(), func.getResultTypes()[0],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. test/codegen/math.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    import "math"
    
    var sink64 [8]float64
    
    func approx(x float64) {
    	// amd64/v2:-".*x86HasSSE41" amd64/v3:-".*x86HasSSE41"
    	// amd64:"ROUNDSD\t[$]2"
    	// s390x:"FIDBR\t[$]6"
    	// arm64:"FRINTPD"
    	// ppc64x:"FRIP"
    	// wasm:"F64Ceil"
    	sink64[0] = math.Ceil(x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/runtime/histogram.go

    	//
    	// Following this pattern, bucket 38 will have the bit 46 set. We don't
    	// have any buckets for higher values, so we spill the rest into an overflow
    	// bucket containing values of 2^47-1 nanoseconds or approx. 1 day or more.
    	// This range is more than enough to handle durations produced by the runtime.
    	timeHistMinBucketBits = 9
    	timeHistMaxBucketBits = 48 // Note that this is exclusive; 1 higher than the actual range.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/trace/main.go

    	"io"
    	"log"
    	"net"
    	"net/http"
    	_ "net/http/pprof" // Required to use pprof
    	"os"
    	"sync/atomic"
    	"time"
    )
    
    const usageMessage = "" +
    	`Usage of 'go tool trace':
    Given a trace file produced by 'go test':
    	go test -trace=trace.out pkg
    
    Open a web browser displaying trace:
    	go tool trace [flags] [pkg.test] trace.out
    
    Generate a pprof-like profile from the trace:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/runtime/vlop_arm.s

    	MOVBU.NE	(Ra), Ra
    
    	SUB.S	$7, Rs
    	RSB 	$0, Rq, RM // M = -q
    	MOVW.PL	Ra<<Rs, Rq
    
    	// 1st Newton iteration
    	MUL.PL	RM, Rq, Ra // a = -q*d
    	BMI 	udiv_by_large_d
    	MULAWT	Ra, Rq, Rq, Rq // q approx q-(q*q*d>>32)
    	TEQ 	RM->1, RM // check for d=0 or d=1
    
    	// 2nd Newton iteration
    	MUL.NE	RM, Rq, Ra
    	MOVW.NE	$0, Rs
    	MULAL.NE Rq, Ra, (Rq,Rs)
    	BEQ 	udiv_by_0_or_1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  6. src/html/entity.go

    		"ape;":                             '\U0000224A',
    		"apid;":                            '\U0000224B',
    		"apos;":                            '\U00000027',
    		"approx;":                          '\U00002248',
    		"approxeq;":                        '\U0000224A',
    		"aring;":                           '\U000000E5',
    		"ascr;":                            '\U0001D4B6',
    		"ast;":                             '\U0000002A',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/subr.go

    					*save = f
    				}
    				c++
    			}
    		}
    	}
    
    	return c
    }
    
    var slist []symlink
    
    // Code to help generate trampoline functions for methods on embedded
    // types. These are approx the same as the corresponding AddImplicitDots
    // routines except that they expect to be called with unique tasks and
    // they return the actual methods.
    
    type symlink struct {
    	field *types.Field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&apacir;":                          "\u2a6f",
    	"&ape;":                             "\u224a",
    	"&apid;":                            "\u224b",
    	"&apos;":                            "\u0027",
    	"&approx;":                          "\u2248",
    	"&approxeq;":                        "\u224a",
    	"&aring;":                           "\u00e5",
    	"&ascr;":                            "\U0001d4b6",
    	"&ast;":                             "\u002a",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    //
    // compressSelfTest tries to catch any issue in the compression implementation
    // early instead of silently corrupting data.
    func compressSelfTest() {
    	// 4 MB block.
    	// Approx runtime ~30ms
    	data := make([]byte, 4<<20)
    	rng := rand.New(rand.NewSource(0))
    	for i := range data {
    		// Generate compressible stream...
    		data[i] = byte(rng.Int63() & 3)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. internal/grid/connection.go

    	StateConnectionError
    
    	// StateShutdown is the state when the server has been shut down.
    	// This will not be used under normal operation.
    	StateShutdown
    
    	// MaxDeadline is the maximum deadline allowed,
    	// Approx 49 days.
    	MaxDeadline = time.Duration(math.MaxUint32) * time.Millisecond
    )
    
    // ContextDialer is a dialer that can be used to dial a remote.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top