Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 293 for vlogf (0.11 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/jit/kernels/xla_ops.cc

      if (use_pjrt) {
        VLOG(2) << "Compiling using PJRT";
        Status status = CompileToPjRtLoadedExecutable(
            *ctx, platform_info_, function_, xla_compiler_args,
            DeviceCompileMode::kStrict, has_ref_vars_,
            /*may_alias_resource_update=*/true, &compilation_result, &pjrt_client,
            &pjrt_executable);
        OP_REQUIRES_OK_ASYNC(ctx, status, done);
    
        VLOG(2) << "Compiled using PJRT: " << status;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

            }
          }
        }
    
        NodeDef def;
        def.set_name(launch->name());
        MergeDebugInfo(NodeDebugInfo(launch->def()), &def);
    
        // Target the XLA CPU/GPU backends.
        VLOG(2) << "Replacing with XlaLaunch";
        VLOG(2) << "Device is " << launch->requested_device();
        def.set_op("XlaLaunch");
        def.set_device(launch->requested_device());
        AddNodeAttr("Tconstants", DataTypeVector{}, &def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    		t.Fatal(err)
    	}
    	foo, err = fooClient.Create(context.TODO(), foo, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Unable to create CR: %v", err)
    	}
    	t.Logf("CR created: %#v", foo.UnstructuredContent())
    
    	t.Logf("Comparing with expected, pruned value")
    	x := runtime.DeepCopyJSON(foo.Object)
    	delete(x, "apiVersion")
    	delete(x, "kind")
    	delete(x, "metadata")
    	var expected map[string]interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_device_context.cc

                                                 bool sync_dst_compute) const {
      if (cpu_tensor->NumElements() == 0) {
        VLOG(2) << "CopyCPUTensorToDevice empty tensor";
        done(absl::OkStatus());
        return;
      }
    
      VLOG(2) << "CopyCPUTensorToDevice " << this << " "
              << reinterpret_cast<const void*>(cpu_tensor->tensor_data().data())
              << " "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    			_, _, newFTRs, newCatchAlls := genFSs(t, rng, trialStep, desiredPLNames, newBadPLNames, 0)
    			for j := 0; ; {
    				if testDebugLogs {
    					t.Logf("For %s, desiredPLNames=%#+v", trialStep, desiredPLNames)
    					t.Logf("For %s, newFTRs=%#+v", trialStep, newFTRs)
    				}
    				// Check that the latest digestion did the right thing
    				nextPLNames := sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/dwarfgen/dwinl.go

    	for i := 0; i < ilevel; i++ {
    		base.Ctxt.Logf("  ")
    	}
    	ic := inlcalls.Calls[idx]
    	callee := base.Ctxt.InlTree.InlinedFunction(ic.InlIndex)
    	base.Ctxt.Logf("  %d: II:%d (%s) V: (", idx, ic.InlIndex, callee.Name)
    	for _, f := range ic.InlVars {
    		base.Ctxt.Logf(" %v", f.Name)
    	}
    	base.Ctxt.Logf(" ) C: (")
    	for _, k := range ic.Children {
    		base.Ctxt.Logf(" %v", k)
    	}
    	base.Ctxt.Logf(" ) R:")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/runtime/crash_test.go

    		if err == nil {
    			t.Logf("try %d: program exited successfully, should have failed", i+1)
    			continue
    		}
    
    		if i > 0 {
    			t.Logf("try %d:\n", i+1)
    		}
    		t.Logf("%s\n", got)
    
    		wants := []string{
    			"panic: crash",
    			"PanicRace",
    			"created by ",
    		}
    		for _, want := range wants {
    			if !bytes.Contains(got, []byte(want)) {
    				t.Logf("did not find expected string %q", want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        core::ScopedUnref pjrt_device_compiler_ref(pjrt_device_compiler);
        core::ScopedUnref profiler_ref(profiler);
    
        VLOG(2) << "Compiled op with PJRT: " << ctx->status();
        VLOG(2) << "result != nullptr: " << (result != nullptr);
        VLOG(2) << "pjrt_executable != nullptr: " << (pjrt_executable != nullptr);
        VLOG(2) << "Executing with PJRT ...";
    
        OP_REQUIRES_OK(ctx, RunPjRtExecutable(inputs, variables, *result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top