Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CpuConcatOp (0.19 sec)

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

    };
    std::unique_ptr<TargetHardwareOperation> CreateArithmeticOp() {
      return std::make_unique<CpuArithmeticOp>();
    }
    
    // Currently used for these ops:
    // tfl.concatenation / tfl.reshape / tfl.pack
    class CpuConcatOp : public TargetHardwareOperation {
      double GetOpCost(mlir::Operation* op) const override {
        float cost = 0.0;
        int64_t count;
        if (ArithmeticCountUtilHelper::GetInputTensorTotalSize(op, &count)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top