Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Dialect (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

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

                          std::pair<uint64_t, uint64_t>>
          custom_op_idx_map_;
    
      // Points to TensorFlow and TFLite dialects, respectively. nullptr if the
      // dialect is not registered.
      const Dialect* tf_dialect_;
      const Dialect* tfl_dialect_;
      const Dialect* vhlo_dialect_;
    
      // The failed ops during legalization.
      std::map<std::string, std::set<std::string>> failed_flex_ops_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
      // Attempt dialect fallback if op's fold hook failed.
      if (failed(folded)) {
        Dialect* dialect = op->getDialect();
        if (!dialect) return failure();
        // Only attempt TF dialect fallback if there are no unknown operands.
        if (some_unknown && dialect == tf_dialect_) return failure();
        auto* interface = dialect->getRegisteredInterface<DialectFoldInterface>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Debug.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project  // NOLINT: Required to register quantization dialect.
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/ilist.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    limitations under the License.
    ==============================================================================*/
    
    // This transformation pass takes operations in TensorFlowLite dialect and
    // optimizes them to resulting operations in TensorFlowLite dialect.
    
    #include <algorithm>
    #include <array>
    #include <climits>
    #include <cstddef>
    #include <cstdint>
    #include <functional>
    #include <iterator>
    #include <map>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    #ifndef TFL_OPS
    #define TFL_OPS
    
    include "mlir/IR/OpBase.td"
    include "mlir/Interfaces/ControlFlowInterfaces.td"
    include "mlir/Interfaces/FunctionInterfaces.td"
    include "mlir/Interfaces/InferTypeOpInterface.td"
    include "mlir/Dialect/Quant/QuantOpsBase.td"
    include "mlir/Interfaces/LoopLikeInterface.td"
    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/StringSet.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/SourceMgr.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    #include "llvm/ADT/StringExtras.h"
    #include "llvm/ADT/TypeSwitch.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/Threading.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    #include "llvm/ADT/iterator_range.h"
    #include "llvm/Support/ErrorHandling.h"
    #include "llvm/Support/FormatVariadic.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top