Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tailwind (0.25 sec)

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

          rewriter.setInsertionPoint(fc_op);
          auto new_bias = rewriter.create<TF::MulOp>(loc, bias, gamma);
          fc_op.getOperation()->replaceUsesOfWith(bias, new_bias);
        }
    
        // Remove the tailing mul op.
        mul_op.replaceAllUsesWith(fc_op.getResult());
        return success();
      }
    };
    
    using FuseConv2DAndMulWithQDQs = FuseAffinOpAndMulWithQDQs<TFL::Conv2DOp>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                                                 "unsupported slice sizes");
            }
          }
          ++index;
        }
    
        // Verify that offset_dims are the tailing dimensions in the output tensor.
        auto offset_dims = gather_op.getDimensionNumbers().getOffsetDims();
        SmallVector<int64_t, 4> offset_dims_vector(offset_dims.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top