Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for msan (0.09 sec)

  1. src/syscall/syscall_windows.go

    	if race.Enabled {
    		if *done > 0 {
    			race.WriteRange(unsafe.Pointer(&p[0]), int(*done))
    		}
    		race.Acquire(unsafe.Pointer(&ioSync))
    	}
    	if msan.Enabled && *done > 0 {
    		msan.Write(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	if asan.Enabled && *done > 0 {
    		asan.Write(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	return err
    }
    
    func WriteFile(fd Handle, p []byte, done *uint32, overlapped *Overlapped) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    		"run only those tests matching the regular expression; empty means to run all. "+
    			"Special exception: if the string begins with '!', the match is inverted.")
    	flag.BoolVar(&t.msan, "msan", false, "run in memory sanitizer builder mode")
    	flag.BoolVar(&t.asan, "asan", false, "run in address sanitizer builder mode")
    	flag.BoolVar(&t.json, "json", false, "report test results in JSON")
    
    	xflagparse(-1) // any number of args
    	if noRebuild {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    		// The return value is on the Go stack. If we are using msan,
    		// and if the C value is partially or completely uninitialized,
    		// the assignment will mark the Go stack as uninitialized.
    		// The Go compiler does not update msan for changes to the
    		// stack. It is possible that the stack will remain
    		// uninitialized, and then later be used in a way that is
    		// visible to msan, possibly leading to a false positive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    		suffixsep = "_"
    		suffix = *flagInstallSuffix
    	} else if *flagRace {
    		suffixsep = "_"
    		suffix = "race"
    	} else if *flagMsan {
    		suffixsep = "_"
    		suffix = "msan"
    	} else if *flagAsan {
    		suffixsep = "_"
    		suffix = "asan"
    	}
    
    	if buildcfg.GOROOT != "" {
    		Lflag(ctxt, filepath.Join(buildcfg.GOROOT, "pkg", fmt.Sprintf("%s_%s%s%s", buildcfg.GOOS, buildcfg.GOARCH, suffixsep, suffix)))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/BUILD

            "mark_for_compilation_pass_test.cc",
            "partially_decluster_pass_test.cc",
            "rearrange_function_argument_pass_test.cc",
        ],
        tags = [
            # TODO(b/141643254) Re-enable msan after fixing
            # use-of-uninitialized-value error.
            "nomsan",
        ] + tf_cuda_tests_tags(),
        deps = [
            ":common",
            ":compilability_check_util",
            ":compilation_passes",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    	tg.run("list", "-f", "{{.SysoFiles}}", "syso")
    	tg.grepStdout("a.syso", "missing syso file with CGO_ENABLED=0")
    
    	tg.setenv("CGO_ENABLED", "1")
    	tg.run("list", "-msan", "-f", "{{.SysoFiles}}", "syso")
    	tg.grepStdoutNot("a.syso", "unexpected syso file with -msan")
    }
    
    // Issue 16120.
    func TestGenerateUsesBuildContext(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("this test won't run under Windows")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    }
    
    // mSpanList heads a linked list of spans.
    type mSpanList struct {
    	_     sys.NotInHeap
    	first *mspan // first span in list, or nil if none
    	last  *mspan // last span in list, or nil if none
    }
    
    type mspan struct {
    	_    sys.NotInHeap
    	next *mspan     // next span in list, or nil if none
    	prev *mspan     // previous span in list, or nil if none
    	list *mSpanList // For debugging.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if value is None:
          return {TFRTypes.NONE}
        if value in (TFRTypes.SHAPE, TFRTypes.TF_TENSOR_SHAPE_FUNC):
          # See TFRTypes.__getattribute__.
          # TODO(mdan): Replacing the enum with classes would avoid this overlap.
          return {value}
        # TODO(mdan): Index more efficiently. Could do a name check instead.
        if any(v is value for v in AG_MODULE.__dict__.values()):
          return {TFRTypes.AG_BUILTIN_FUNC}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    // the specified mean.
    func fastexprand(mean int) int32 {
    	// Avoid overflow. Maximum possible step is
    	// -ln(1/(1<<randomBitCount)) * mean, approximately 20 * mean.
    	switch {
    	case mean > 0x7000000:
    		mean = 0x7000000
    	case mean == 0:
    		return 0
    	}
    
    	// Take a random sample of the exponential distribution exp(-mean*x).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //
    // When is_training is set to true, the given variance and mean are not used.
    // In above calculation, they are replaced by new values. These new mean and
    // variance are calculated as following:
    // new_mean = mean(x, axis=[0, 1, 2])
    // new_variance = mean(squared_difference(x, new_mean), axis=[0, 1, 2])
    //
    // The DDR rule for the is_training equals true case is as following:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top