Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for DEVICE_CPU (0.12 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        // Early return for any node with a device that is not a CPU or GPU.
        DeviceNameUtils::ParsedName parsed;
        if (DeviceNameUtils::ParseFullName(n->requested_device(), &parsed)) {
          if (parsed.type != DEVICE_CPU && parsed.type != DEVICE_GPU) {
            return false;
          }
        }
      }
      return true;
    }
    
    // Checks if a graph node is marked to be a guaranteed constant.
    bool is_guaranteed_constant(const Node& n) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_platform_info.cc

      const PjRtBaseDevice::Metadata* pjrt_device_metadata = nullptr;
      std::shared_ptr<se::DeviceMemoryAllocator> custom_allocator;
    
      const std::string& device_type = device_base->device_type();
      if (device_type == DEVICE_CPU) {
        platform_id = se::host::kHostPlatformId;
      } else if (device_type == DEVICE_GPU) {
        auto device = static_cast<Device*>(device_base);
        platform_id = device->tensorflow_accelerator_device_info()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.cc

    se::Platform::Id XlaPlatformInfoFromDevice(DeviceBase* device_base) {
      auto device = static_cast<Device*>(device_base);
      se::Platform::Id platform_id = nullptr;
      if (device->device_type() == DEVICE_CPU) {
        platform_id = se::host::kHostPlatformId;
      }
    
      return platform_id;
    }
    
    absl::flat_hash_map<int, int> CreateVariableLookup(
        const std::vector<VariableInfo>& variables) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

                                      std::unique_ptr<Graph>* result) {
      std::vector<std::unique_ptr<Device>> devices;
      devices.push_back(FakeDevice::Make(kDeviceName, DEVICE_GPU));
      devices.push_back(FakeDevice::Make(kHostName, DEVICE_CPU));
    
      std::unique_ptr<DeviceSet> device_set(new DeviceSet());
      for (auto& device : devices) {
        device_set->AddDevice(device.get());
      }
    
      auto graph = std::make_unique<Graph>(OpRegistry::Global());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

               (policy == XlaOpRegistry::AutoclusteringPolicy::kIfEnabledGlobally &&
                global_jit_level_ != OptimizerOptions::OFF) ||
               (device_type.type_string() == DEVICE_CPU &&
                policy ==
                    XlaOpRegistry::AutoclusteringPolicy::kIfExplicitlyRequested &&
                cpu_global_jit_);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. tensorflow/c/kernels_test.cc

        TF_ASSERT_OK(InitOp());
      }
    
    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
      const char* device_name_ = tensorflow::DEVICE_GPU;
    #else
      const char* device_name_ = tensorflow::DEVICE_CPU;
    #endif
    };
    
    // Validates that the tensor has shape and type corresponding to
    // dims and dtype.
    void validate_tensor(TF_Tensor* tensor, int64_t* dims, int64_t num_dims,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

    REGISTER_OP("TestOpWithSingleKernel")
        .Input("a: float")
        .Input("b: float")
        .Output("o: float");
    REGISTER_KERNEL_BUILDER(
        Name("TestOpWithSingleKernel").Device(tensorflow::DEVICE_CPU), DummyKernel);
    
    TEST(TestKernel, TestGetAllRegisteredKernels) {
      TF_Status* status = TF_NewStatus();
      TF_Buffer* kernel_list_buf = TF_GetAllRegisteredKernels(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top