Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for renameToUnique (0.23 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

        auto root = op->getParentOfType<ModuleOp>();
        auto func = BuildGELUDecomposition(
            rhs_add.getType().cast<RankedTensorType>(), rewriter, root.getBody());
    
        SymbolTable table(root);
        (void)table.renameToUnique(func, {});
    
        rewriter.setInsertionPointAfter(output_mul);
        auto composite_attrs = rewriter.getDictionaryAttr(
            {rewriter.getNamedAttr("approx", rewriter.getBoolAttr(false))});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

        const bool is_main_func = func.getSymName() == kStablehloMainFunctionName;
        if (tf_symbol_table.lookup(func.getSymName())) {
          if (failed(stablehlo_symbol_table.renameToUnique(
                  func, {&tf_symbol_table, &stablehlo_symbol_table}))) {
            return func.emitError()
                   << "failed to rename StableHLO function " << func.getSymName();
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top