Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for activation_mode (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/gpu_fusion.cc

        if (!add_op || add_op.getZ().hasOneUse()) {
          // We fuse the Relu only if the add has a single use, otherwise we only
          // fuse the add itself.
          op->setAttr("activation_mode", rewriter.getStringAttr("Relu"));
          rewriter.replaceOp(relu_op, op->getResult(0));
        }
        if (add_op) {
          rewriter.replaceOp(add_op, op->getResult(0));
        }
    
        return success();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 5.2K bytes
    - Viewed (0)
Back to top