Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for RegisterCustomDevice (0.09 seconds)

  1. tensorflow/c/eager/immediate_execution_context.h

      // already registered.
      // TODO(tfrt-devs): Remove this method. Let caller register it directly into
      // CustomDeviceOpHandler.
      virtual absl::Status RegisterCustomDevice(
          const string& name, std::unique_ptr<CustomDevice> device) = 0;
    
      // Return FunctionLibraryDefinition. Transformations need to use it to use it
      // to invoke MLIR compiler passes.
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 12.3K bytes
    - Click Count (0)
  2. tensorflow/c/eager/c_api.cc

        device.pack = &DefaultCustomDevicePack;
      }
      auto custom_device = std::make_unique<tensorflow::CustomDeviceAPI>(
          ctx, device, device_info, device_name);
      status->status = tensorflow::unwrap(ctx)->RegisterCustomDevice(
          device_name, std::move(custom_device));
    }
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Nov 07 05:55:21 GMT 2025
    - 43.9K bytes
    - Click Count (0)
Back to Top