Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 694 for vlogf (0.07 sec)

  1. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

          if (pass_status.ok()) {
            VLOG(2) << "Finished MLIR graph optimization pass: "
                    << StringRefToView(name);
            VLOG(2) << "Graph #nodes " << (*graph)->num_nodes() << " #edges "
                    << (*graph)->num_edges();
            is_module_updated = true;
          }
        } else if (pass_state == MlirOptimizationPassState::FallbackEnabled) {
          VLOG(2) << "Run MLIR graph optimization pass with fallback: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_json_interleaved.txt

    go 1.15
    -- main_test.go --
    package main
    
    import (
    	"testing"
    )
    
    func TestWeirdTiming(outer *testing.T) {
    	outer.Run("pauser", func(pauser *testing.T) {
    		outer.Logf("logging to outer")
    		pauser.Parallel()
    	})
    
    	outer.Logf("logging to outer again")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 17:44:20 UTC 2020
    - 581 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device.cc

      if (options.shape_determination_fns.empty()) {
        LOG(ERROR) << "shape_representation_fns must be non-empty.";
      }
      VLOG(1) << "Created XLA device " << options.compilation_device_name << " "
              << options.device_ordinal << " " << this;
      VLOG(1) << "XlaDevice options: use_multiple_streams: "
              << options.use_multiple_streams << " use_global_compute_stream: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testfortran/fortran_test.go

    		if runtime.GOOS != "aix" {
    			cgoLDFlags += " -Wl,-rpath," + libDir
    		}
    		t.Logf("CGO_LDFLAGS=%s", cgoLDFlags)
    		os.Setenv("CGO_LDFLAGS", cgoLDFlags)
    
    	}
    
    	// Do a test build that doesn't involve Go FORTRAN support.
    	fcArgs := append([]string{"testdata/helloworld/helloworld.f90", "-o", "/dev/null"}, fcExtra...)
    	t.Logf("%s %s", fc, fcArgs)
    	if err := exec.Command(fc, fcArgs...).Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/link/cgo_test.go

    	cmd.Dir = dir
    	cgoCflags += " -flto"
    	cmd.Env = append(cmd.Environ(), "CGO_CFLAGS="+cgoCflags)
    
    	t.Logf("CGO_CFLAGS=%q %v", cgoCflags, cmd)
    	out, err := cmd.CombinedOutput()
    	t.Logf("%s", out)
    
    	if err != nil {
    		t.Logf("go build failed: %v", err)
    
    		// Error messages we've seen indicating that LTO is not supported.
    		// These errors come from GCC or clang, not Go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 09 22:13:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device_compiler_client.cc

    }
    }  // namespace
    
    absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>
    XlaDeviceCompilerClient::BuildExecutable(
        const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& result) {
      VLOG(2) << "Compiling to xla::LocalExecutable.";
    
      std::vector<const xla::Shape*> argument_layouts =
          GetShapePointers(result.xla_input_shapes);
      xla::ExecutableBuildOptions build_options = GetExecutableBuildOptions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/go/go_unix_test.go

    	if stdout.Len() > 0 {
    		t.Logf("stdout:\n%s", stdout)
    	}
    	err = cmd.Wait()
    
    	ee, _ := err.(*exec.ExitError)
    	if ee == nil {
    		t.Fatalf("unexpectedly finished with nonzero status")
    	}
    	if len(ee.Stderr) > 0 {
    		t.Logf("stderr:\n%s", ee.Stderr)
    	}
    	if !ee.Exited() {
    		t.Fatalf("'go test' did not exit after interrupt: %v", err)
    	}
    
    	t.Logf("interrupted tests without deadlocking")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 16:17:55 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/listtype_test.go

    	if createErr == nil {
    		t.Fatalf("Expected validation errors, but did not get one")
    	}
    
    	t.Logf("Checking that valid fields DO NOT show in error")
    	for _, valid := range validListTypeFields {
    		if strings.Contains(createErr.Error(), valid) {
    			t.Errorf("unexpected error about %q: %v", valid, err)
    		}
    	}
    
    	t.Logf("Checking that invalid fields DO show in error")
    	for _, invalid := range invalidListTypeFields {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/net/dial_unix_test.go

    		return err
    	}
    
    	getsockoptIntFunc = func(fd, level, opt int) (val int, err error) {
    		val, err = oldGetsockoptIntFunc(fd, level, opt)
    		t.Logf("getsockoptIntFunc(%d, %d, %d) = (%v, %v)", fd, level, opt, val, err)
    		if level == syscall.SOL_SOCKET && opt == syscall.SO_ERROR && err == nil && val == 0 {
    			t.Logf("canceling context")
    
    			// Cancel the context at just the moment which
    			// caused the race in issue 16523.
    			cancelCtx()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	t.Logf("Add 'c' default to the storage version and wait until GET sees it in both status and spec")
    	addDefault("v1beta2", "c", "C")
    
    	t.Logf("wait until GET sees 'c' in both status and spec")
    	if err := wait.PollImmediate(100*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top