Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for GetVector (0.51 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      return LogicalResult::success();
    }
    
    LogicalResult FindCoreTPUOps(
        llvm::SetVector<Operation*>& core_tpu_ops,
        const llvm::SetVector<Operation*>& forward_pass_ops,
        const llvm::SetVector<Operation*>& backward_pass_ops,
        const llvm::SetVector<Operation*>& merged_set,
        func::FuncOp loop_body_func) {
      // Find all of the Ops that are part of the forward/backward pass but aren't
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    [INPUT]
        Name             tail
        Alias            node-problem-detector
        Tag              node-problem-detector
        Mem_Buf_Limit    5MB
        Skip_Long_Lines  On
        Refresh_Interval 5
        Path             C:\etc\kubernetes\logs\node-problem-detector\*.log.INFO*
        DB               /var/run/google-fluentbit/pos-files/node-problem-detector.db
        Multiline        On
        Parser_Firstline glog
    
    # Example:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    // because cmd/dist can not import internal packages during bootstrap.
    // The race detector only supports 48-bit VMA on arm64. But we don't have
    // a good solution to check VMA size (see https://go.dev/issue/29948).
    // raceDetectorSupported will always return true for arm64. But race
    // detector tests may abort on non 48-bit VMA configuration, the tests
    // will be marked as "skipped" in this case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// because all committed memory is charged to the process,
    	// even if it's not touched. Hence, for processes with small
    	// heaps, the mapped arena space needs to be commensurate.
    	// This is particularly important with the race detector,
    	// since it significantly amplifies the cost of committed
    	// memory.
    	heapArenaBytes = 1 << logHeapArenaBytes
    
    	heapArenaWords = heapArenaBytes / goarch.PtrSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    #include <cstddef>
    #include <cstdint>
    
    #include "llvm/ADT/BitVector.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/DenseSet.h"
    #include "llvm/ADT/MapVector.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            String leakDetectionJar = String.format("file-leak-detector-%s-jar-with-dependencies.jar", leakDetectionVersion);
            String leakDetectorUrl = String.format("https://repo.jenkins-ci.org/releases/org/kohsuke/file-leak-detector/%s/%s", leakDetectionVersion, leakDetectionJar);
            this.beforeExecute(executer -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    		accum = f(accum)
    	}
    	*y = accum
    }
    
    var (
    	salt1 = 0
    	salt2 = 0
    )
    
    // The actual CPU hogging function.
    // Must not call other functions nor access heap/globals in the loop,
    // otherwise under race detector the samples will be in the race runtime.
    func cpuHog1(x int) int {
    	return cpuHog0(x, 1e5)
    }
    
    func cpuHog0(x, n int) int {
    	foo := x
    	for i := 0; i < n; i++ {
    		if foo > 0 {
    			foo *= foo
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.3.md

    - Kernel crash with Aufs storage driver on Debian Jessie ([#27885](https://github.com/kubernetes/kubernetes/issues/27885))
      - Consider running the *new* [kubernetes node problem detector](https://github.com/kubernetes/node-problem-detector) to identify this (and other) kernel issues automatically.
    
    - File descriptors are leaked in docker v1.11 ([#275](https://github.com/docker/containerd/issues/275))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    		return 0
    	}
    
    	// Followed by NetBSD string and version.
    	out.Write(ELF_NOTE_NETBSD_NAME)
    	out.Write8(0)
    	out.Write32(ELF_NOTE_NETBSD_VERSION)
    
    	return int(sh.Size)
    }
    
    // The race detector can't handle ASLR (address space layout randomization).
    // ASLR is on by default for NetBSD, so we turn the ASLR off explicitly
    // using a magic elf Note when building race binaries.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    		canRace = testenv.HasCGO() && platform.RaceDetectorSupported(runtime.GOOS, runtime.GOARCH)
    		// The race detector doesn't work on Alpine Linux:
    		// golang.org/issue/14481
    		// gccgo does not support the race detector.
    		if isAlpineLinux() || runtime.Compiler == "gccgo" {
    			canRace = false
    		}
    	}
    
    	if n, limited := base.NetLimit(); limited && n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top