Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for compilation_device_name (0.24 sec)

  1. tensorflow/compiler/jit/pjrt_base_device.h

                int device_ordinal, std::string compilation_device_name,
                std::vector<XlaShapeLayoutHelpers::ShapeDeterminationFns>
                    shape_determination_fns)
            : device_name_prefix(device_name_prefix),
              device_name(device_name),
              device_ordinal(device_ordinal),
              compilation_device_name(compilation_device_name),
              shape_determination_fns(shape_determination_fns) {}
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_base_device.cc

          metadata_(DeviceType(options.compilation_device_name),
                    options.shape_determination_fns) {
      if (options.shape_determination_fns.empty()) {
        LOG(ERROR) << "shape_representation_fns must be non-empty.";
      }
      VLOG(1) << "Created PJRT base device " << options.compilation_device_name
              << " device_name: " << name();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cpu_device.cc

        return absl::OkStatus();
      }
      bool compile_on_demand = flags->tf_xla_compile_on_demand;
    
      XlaOpRegistry::DeviceRegistration registration;
      registration.compilation_device_name = DEVICE_CPU_XLA_JIT;
      registration.autoclustering_policy =
          compile_on_demand
              ? XlaOpRegistry::AutoclusteringPolicy::kIfExplicitlyRequested
              : XlaOpRegistry::AutoclusteringPolicy::kAlways;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_gpu_device.cc

        VLOG(1) << "Not creating XLA devices, tf_xla_enable_xla_devices not set";
        return absl::OkStatus();
      }
    
      XlaOpRegistry::DeviceRegistration registration;
      registration.compilation_device_name = DEVICE_GPU_XLA_JIT;
      registration.autoclustering_policy =
          XlaOpRegistry::AutoclusteringPolicy::kAlways;
      registration.cluster_resource_variable_ops_unsafely = true;
      registration.cluster_stack_ops = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device.cc

    }
    
    // Warn about XLA_CPU/XLA_GPU exactly once.
    static void ShowXlaDeviceDeprecationWarning(
        absl::string_view compilation_device_name) {
      static absl::once_flag once;
      if (absl::StrContains(compilation_device_name, "CPU") ||
          absl::StrContains(compilation_device_name, "GPU")) {
        absl::call_once(once, [] {
          LOG(INFO) << "XLA_GPU and XLA_CPU devices are deprecated and will be "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_platform_info.cc

        return errors::InvalidArgument("No JIT device registered for ",
                                       device_type.type());
      }
      *compilation_device_type = DeviceType(registration->compilation_device_name);
    
      TF_ASSIGN_OR_RETURN(auto allowed_gpus, GetAllowedGpus(flr));
      // TODO(b/255826209): Set platform, intra op parallelism threads if required
      // and when supported by GetOrCreatePjRtClient().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_tpu_device.cc

      }
    
      if (platform != nullptr && platform->ShouldRegisterTpuDeviceToDeviceCopy()) {
        RegisterTpuDeviceToDeviceCopy();
      }
    
      XlaOpRegistry::DeviceRegistration registration;
      registration.compilation_device_name = DEVICE_TPU_XLA_JIT;
      registration.autoclustering_policy =
          tpu_autoclustering_flag
              ? XlaOpRegistry::AutoclusteringPolicy::kAlways
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.h

        string device_name;
    
        // The number of the device.
        int device_ordinal = -1;
    
        // The name of the compilation device (e.g., "XLA_CPU_JIT");
        string compilation_device_name;
    
        // If 'use_multiple_streams' is true, we create separate streams for
        // compute, host-to-device, and device-to-host communication.
        bool use_multiple_streams = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        filter.allow_unique_op = false;
        filter.allow_where_op = allow_where_op;
    
        RecursiveCompilabilityChecker checker(
            filter, DeviceType{registration->compilation_device_name});
    
        if (!checker.IsCompilableNode(*node, lib_runtime)) {
          continue;
        }
    
        if (node->type_string() == "Const") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top