Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hardware_typeid (0.24 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.cc

      std::function<std::unique_ptr<TargetHardware>()> target_hardware_factory;
    };
    
    struct RegisteredTargetHardwareOps {
      explicit RegisteredTargetHardwareOps(mlir::TypeID hardware_type)
          : hardware_typeid(hardware_type) {}
      // Key is the Operation TypeID
      llvm::DenseMap<mlir::TypeID, std::unique_ptr<TargetHardwareOperation>>
          target_hardware_ops;
      // Key is the Operation TypeID
      llvm::DenseMap<mlir::TypeID,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.h

    // DEPRECATED: Do not use, prefer RegisterTargetHardwareOpFactory intstead.
    void RegisterTargetHardwareOp(
        mlir::TypeID hardware_type, mlir::TypeID op_type,
        std::function<std::unique_ptr<TargetHardwareOperation>()>
            target_hardware_op_factory);
    
    void RegisterTargetHardwareOpFactory(
        mlir::TypeID hardware_type, mlir::TypeID op_type,
        std::function<std::unique_ptr<TargetHardwareOperation>()>
            target_hardware_op_factory);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top