Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for bef_executor (0.17 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TF::CreateDropWhileShapeInvariantPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::tf_executor::CreateTFExecutorGraphPruningPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::tf_executor::CreateTFExecutorIslandCoarseningPass());
      pm.addPass(mlir::TF::CreateTFFunctionalControlFlowToRegions());
      pm.addPass(mlir::createInlinerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor_test.cc

      mlir_module_->print(raw_stream);
    
      EXPECT_EQ(compilation_status.Delta(kExportSuccess), 1);
      EXPECT_EQ(compilation_status.Delta(kExportFailed), 0);
      EXPECT_EQ(
          CountSubstring(module_dump, "tf_executor.island wraps \"tf.Concat\""), 2);
    }
    
    }  // namespace
    }  // namespace v2
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      while (Operation* op = value.getDefiningOp()) {
        int res_index = mlir::cast<OpResult>(value).getResultNumber();
        if (auto graph = dyn_cast<tf_executor::GraphOp>(op)) {
          value = graph.GetFetch().getOperand(res_index);
        } else if (auto island = dyn_cast<tf_executor::IslandOp>(op)) {
          // Control output is generated by the IslandOp, not the yield in
          // in the Island body.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Transforms/Passes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/dialect_registration.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_post_calibration_component.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"  // IWYU pragma: keep
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"  // IWYU pragma: keep
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"  // IWYU pragma: keep
    
    namespace mlir::quant::stablehlo::testing {
    
    #define GEN_PASS_DEF_TESTPOSTCALIBRATIONCOMPONENTPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                 tf_executor::EnterOp, tf_executor::ExitOp, tf_executor::FetchOp,
                 tf_executor::GraphOp, tf_executor::IslandOp,
                 tf_executor::LoopCondOp, tf_executor::MergeOp,
                 tf_executor::NextIterationSinkOp, tf_executor::SwitchNOp,
                 tf_executor::SwitchOp, tf_executor::YieldOp>(op) ||
             isa<InferTypeOpInterface>(op);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf_test.cc

    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/register_common_dialects.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/platform/resource_loader.h"
    #include "tsl/lib/core/status_test_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:44:37 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

    #include "mlir/Tools/mlir-translate/Translation.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/IR/OperationSupport.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/import_model.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          return builder_.create<mlir::tf_executor::SwitchNOp>(loc, types, operands,
                                                               result.attributes);
        }
        return builder_.create<mlir::tf_executor::SwitchOp>(loc, types, operands,
                                                            result.attributes);
      }
      if (node.IsMerge()) {
        return builder_.create<mlir::tf_executor::MergeOp>(loc, types, operands,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top