Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TensorFlowDialect (3.29 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config_test.cc

    TEST_F(LegalizationOpConfigTest, CountLoweringsSet) {
      int mlir_lowering_count = 0;
      int tf2xla_fallback_count = 0;
      int non_categorized_count = 0;
    
      DialectRegistry dialect_registry;
      dialect_registry.insert<mlir::TF::TensorFlowDialect>();
    
      MLIRContext context(dialect_registry);
      context.loadAllAvailableDialects();
    
      for (auto operation : context.getRegisteredOperations()) {
        if (IsTypeLegalizedWithMlir(operation.getTypeID())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 03:31:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

      // Register StableHLO Quantizer pass pipelines.
      mlir::quant::stablehlo::RegisterPassPipelines();
    
      mlir::DialectRegistry registry;
      registry.insert<mlir::scf::SCFDialect, mlir::TF::TensorFlowDialect,
                      mlir::tf_saved_model::TensorFlowSavedModelDialect,
                      mlir::func::FuncDialect, mlir::shape::ShapeDialect,
                      mlir::arith::ArithDialect, mlir::tf_type::TFTypeDialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

        // remove this restriction altogether except for the terminators that
        // require function signature change and shouldn't be
        if (op->getName().getDialectNamespace() !=
            TF::TensorFlowDialect::getDialectNamespace())
          return failure();
    
        // Refining types may have implications to the attached regions or symbol
        // references so do not update such ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top