Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 348 for vlogf (0.04 sec)

  1. tensorflow/compiler/jit/xla_activity_logging_listener.cc

        if (!IsEnabled()) {
          VLOG(3) << "Logging XlaAutoClusteringActivity disabled";
          return absl::OkStatus();
        }
    
        return absl::OkStatus();
      }
    
      Status Listen(
          const XlaJitCompilationActivity& jit_compilation_activity) override {
        if (!IsEnabled()) {
          VLOG(3) << "Logging XlaJitCompilationActivity disabled";
          return absl::OkStatus();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  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. 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)
  5. src/internal/sysinfo/sysinfo_test.go

    // license that can be found in the LICENSE file.
    
    package sysinfo_test
    
    import (
    	. "internal/sysinfo"
    	"testing"
    )
    
    func TestCPUName(t *testing.T) {
    	t.Logf("CPUName: %s", CPUName())
    	t.Logf("osCPUInfoName: %s", XosCPUInfoName())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 343 bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/status/status_manager_test.go

    	t.Logf("syncBatch should not sync any pods because nothing is changed.")
    	m.testSyncBatch()
    	verifyActions(t, m, []core.Action{})
    
    	t.Logf("Change mirror pod identity.")
    	m.podManager.(mutablePodManager).RemovePod(mirrorPod)
    	mirrorPod.UID = "new-mirror-pod"
    	mirrorPod.Status = v1.PodStatus{}
    	m.podManager.(mutablePodManager).AddPod(mirrorPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // considered "printf wrappers"; calls to them are subject to the same
    // checking. In this example, logf is a printf wrapper:
    //
    //	func logf(level int, format string, args ...any) {
    //		if enabled(level) {
    //			log.Printf(format, args...)
    //		}
    //	}
    //
    //	logf(3, "invalid request: %v") // logf format reads arg 1, but call has 0 args
    //
    // To enable printf checking on a function that is not found by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top