Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,161 for INC (0.27 sec)

  1. tensorflow/compiler/mlir/quantization/common/ir/BUILD

        tbl_outs = [
            (
                ["-gen-op-decls"],
                "QuantOps.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "QuantOps.cc.inc",
            ),
            (
                [
                    "-gen-dialect-decls",
                    "-dialect=quantization",
                ],
                "QuantOpsDialect.h.inc",
            ),
            (
                [
                    "-gen-dialect-defs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 29 02:59:58 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/telemetrystats/version_unix.go

    	var v unix.Utsname
    	err := unix.Uname(&v)
    	if err != nil {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-uname-error", runtime.GOOS))
    		return
    	}
    	major, minor, ok := majorMinor(convert(v.Release[:]))
    	if runtime.GOOS == "aix" {
    		major, minor, ok = convert(v.Version[:]), convert(v.Release[:]), true
    	}
    	if !ok {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-bad-format", runtime.GOOS))
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:44:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_test.go

    		N = 10
    		iter = 10000
    	}
    	inc := uintptr(100)
    	total := uintptr(0)
    	runParallel(N, iter, func() {
    		atomic.Xadduintptr(&total, inc)
    	})
    	if want := uintptr(N*iter) * inc; want != total {
    		t.Fatalf("xadduintpr error, want %d, got %d", want, total)
    	}
    	total = 0
    	runParallel(N, iter, func() {
    		atomic.Xadduintptr(&total, inc)
    		atomic.Xadduintptr(&total, uintptr(-int64(inc)))
    	})
    	if total != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    // 	}
    // 	goto C
    // Z:
    // 	return y
    // }
    
    // {f:BC_CD_BE_BZ_CZ101,
    //  maxin:32, blocks:[]blo{
    //  	blo{inc:0, cond:true, succs:[2]int64{1, 2}},
    //  	blo{inc:1, cond:true, succs:[2]int64{2, 3}},
    //  	blo{inc:0, cond:true, succs:[2]int64{1, 4}},
    //  	blo{inc:10, cond:true, succs:[2]int64{1, 25}},
    //  	blo{inc:0, cond:true, succs:[2]int64{2, 25}},}},
    
    var labels string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  5. test/method5.go

    	}
    }
    
    func checkI(name string, i tinter, inc int) {
    	b, x := i.m(1000, 99)
    	if b != 99 || x != 1000+inc {
    		failed = true
    		print(name, ".m(1000, 99) = ", b, ", ", x, " want 99, ", 1000+inc, "\n")
    	}
    	
    	checkF("(i="+name+")", i.m, inc)
    }
    
    func checkF(name string, f func(int, byte) (byte, int), inc int) {
    	b, x := f(1000, 99)
    	if b != 99 || x != 1000+inc {
    		failed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // aaa : 2015-02-26 American Automobile Association, Inc.
    aaa
    
    // aarp : 2015-05-21 AARP
    aarp
    
    // abarth : 2015-07-30 Fiat Chrysler Automobiles N.V.
    abarth
    
    // abb : 2014-10-24 ABB Ltd
    abb
    
    // abbott : 2014-07-24 Abbott Laboratories, Inc.
    abbott
    
    // abbvie : 2015-07-30 AbbVie Inc.
    abbvie
    
    // abc : 2015-07-30 Disney Enterprises, Inc.
    abc
    
    // able : 2015-06-25 Able Inc.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.h

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/TypeID.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_dialect.h.inc"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_enums.h.inc"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/utils/utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/runtime/fastlog2_test.go

    	// implementation over the range of interest for heap sampling.
    	const randomBitCount = 26
    	var e float64
    
    	inc := 1
    	if testing.Short() {
    		// Check 1K total values, down from 64M.
    		inc = 1 << 16
    	}
    	for i := 1; i < 1<<randomBitCount; i += inc {
    		l, fl := math.Log2(float64(i)), runtime.Fastlog2(float64(i))
    		d := l - fl
    		e += d * d
    	}
    	e = math.Sqrt(e)
    
    	if e > 1.0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 784 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cc

      addInterfaces<TensorflowMlrtInlinerInterface>();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.cpp.inc"
          >();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.cpp.inc"
          >();
    }
    
    // Parse a type registered to this dialect.
    mlir::Type TensorflowMlrtDialect::parseType(
        mlir::DialectAsmParser &parser) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "collection_ops_util.h",
            "einsum.h",
            "passes.h",
        ],
        includes = ["include"],
        textual_hdrs = [
            "tf_device_passes.h.inc",
            "tf_passes.h.inc",
            "tf_savedmodel_passes.h.inc",
        ],
        visibility = ["//visibility:public"],
        deps = [
            ":cluster_formation",
            ":decompose_resource_ops",
            ":decompose_resource_ops_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top