Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetBiasAdd (0.89 sec)

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

    // input. If there are multiple such BiasAdds, one is returned (with no
    // guarantee as to which one). If there are no BiasAdds that use the output,
    // returns a null BiasAddOp.
    BiasAddOp GetBiasAdd(Value op) {
      for (auto &use : op.getUses()) {
        auto bias_add = dyn_cast_or_null<BiasAddOp>(use.getOwner());
        // If it's a BiasAdd, check that the conv op is the first input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top