Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for TensorFlowExecutorDialect (0.38 sec)

  1. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

                      mlir::TF::TensorFlowDialect,
                      mlir::shape::ShapeDialect,
                      mlir::tf_device::TensorFlowDeviceDialect,
                      mlir::tf_executor::TensorFlowExecutorDialect>();
      mlir::func::registerAllExtensions(registry);
      // clang-format on
    }
    
    Status MlirFunctionOptimizationPass::Run(
        const std::string& function_name, const DeviceSet& device_set,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

                               BreakUpIslands, TF::SideEffectAnalysis> {
      void getDependentDialects(DialectRegistry& registry) const override {
        registry.insert<tf_executor::TensorFlowExecutorDialect>();
      }
    
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(BreakUpIslands)
    
      StringRef getArgument() const final { return "tf-executor-break-up-islands"; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

                  .getValue());
        }
      }
    
      ConversionTarget target(context);
      target.addLegalDialect<TF::TensorFlowDialect>();
      target.addLegalDialect<tf_executor::TensorFlowExecutorDialect>();
      target.addLegalOp<ModuleOp>();
      target.addLegalOp<func::FuncOp>();
      target.addLegalOp<func::ReturnOp>();
    
      RewritePatternSet patterns(&context);
      patterns.add<ConvertGraphOp>(&context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    def FunctionalToExecutorDialectConversionPass : Pass<"tf-functional-to-executor-conversion", "mlir::func::FuncOp"> {
      let summary = "Transform from func op to TF executor dialect.";
      let constructor = "CreateFunctionalToExecutorDialectConversionPass()";
      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            module.getContext()->getOrLoadDialect<mlir::vhlo::VhloDialect>();
        // Right now the TF executor dialect is still needed to build NodeDef.
        module.getContext()
            ->getOrLoadDialect<mlir::tf_executor::TensorFlowExecutorDialect>();
      }
    
      std::optional<std::string> TranslateInternal();
    
      // Returns TFLite buffer populated with constant value if the operation is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top