Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for TargetHardware (0.23 sec)

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

                   EnsureBiasForConv2d, PadSlice, FullyConnectedToConv, PadConcat,
                   SquaredDifference>(context);
      return patterns;
    }
    
    double GpuHardware::GetHardwareSwitchingCost(const TargetHardware* from,
                                                 size_t buffer_size) const {
      auto from_type = from->GetTypeId();
      auto to_type = GetTypeId();
      if (from_type == to_type) return 0.0f;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_pass.h

      explicit TacPass(const TacModule* module)
          : OperationPass<T>::OperationPass(mlir::TypeID::get<T>()),
            module_(module) {}
    
      ~TacPass() override = default;
    
      const TargetHardware* GetTargetHardware(
          const std::string& hardware_name) const {
        return module_ != nullptr
                   ? module_->GetTargetHardware(hardware_name)
                   : mlir::TFL::tac::GetTargetHardware(hardware_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/nnapi_hardware.cc

      patterns.add<SquaredDifference, LowerPackIntoConcatReshape,
                   ReduceMeanToAvgPool, InsertRequantForReduceMean>(context);
      return patterns;
    }
    
    std::unique_ptr<TargetHardware> CreateNNAPIHardware() {
      return std::make_unique<NNAPIHardware>();
    }
    
    TargetHardwareRegistration<NNAPIHardware> nnapi_hardware(
        "Target device for NNAPI", CreateNNAPIHardware);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top