Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for add_bias (0.25 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          if (addend_shape.getShape().size() != 1) return failure();
        }
    
        // Calculate new bias.  Generate a new FC; it will be constant folded.
        auto old_bias = fc_op.getBias();
        if (!old_bias || mlir::isa<NoneType>(old_bias.getType())) {
          // TODO(b/180752069): Figure out new bias' type when old bias is empty.
          return failure();
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (1)
Back to top