Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for func_symbols_ (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    };
    
    class ConvertGeneralOp : public ConversionPattern {
     public:
      ConvertGeneralOp(MLIRContext *context,
                       const DenseSet<StringRef> &func_symbols)
          : ConversionPattern(MatchAnyOpTypeTag(), PatternBenefit(1), context),
            func_symbols_(func_symbols) {}
    
      LogicalResult matchAndRewrite(
          Operation *op, llvm::ArrayRef<Value> operands,
          ConversionPatternRewriter &rewriter) const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          }
        } else if (auto xla_call_module_op = dyn_cast<XlaCallModuleOp>(op)) {
          for (auto func_symbol : xla_call_module_op.getFunctionList().getAsRange<
              mlir::FlatSymbolRefAttr>()) {
            if (auto func = symbol_table_collection_.lookupNearestSymbolFrom<
                    mlir::func::FuncOp>(xla_call_module_op, func_symbol)) {
              AddRegionSideEffectsForOp(func.getBody(), op);
            }
          }
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top