Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for raw_ostream (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

                                   std::move(graph_copy), {}, &result);
    }
    
    static LogicalResult MlirToGraphTranslateFunction(ModuleOp module,
                                                      llvm::raw_ostream& output) {
      if (!module) return failure();
    
      tensorflow::GraphExportConfig confs;
      confs.export_entry_func_to_flib = export_entry_func_to_flib;
      confs.export_original_tf_func_name = export_original_tf_func_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/InitLLVM.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/PrettyStackTrace.h"
    #include "llvm/Support/raw_ostream.h"
    #include "tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/lite/c/c_api_types.h"
    
    using llvm::cl::opt;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/Debug.h"
    #include "llvm/Support/FormatVariadic.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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateSplitIntoIslandPerOpPass();
    
    // Prints, but otherwise pipes through without changes, the current module.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePrintPass(
        raw_ostream* os = nullptr);
    
    // Moves TPUCompileMlir ops as far to the front as possible.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateMoveTpuCompileToFrontPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          port = {0};
        }
      }
      ValuePort(PointerUnion<Operation*, BlockArgument> producer,
                SmallVector<unsigned int, 2> port)
          : producer(producer), port(port) {}
    
      raw_ostream& print(raw_ostream& os) const {
        if (auto* op = producer.dyn_cast<Operation*>())
          os << "op " << op->getName();
        if (auto ba = producer.dyn_cast<BlockArgument>())
          os << "block_arg " << ba.getArgNumber();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallSet.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringSwitch.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/Debug.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Affine/Analysis/LoopAnalysis.h"  // from @llvm-project
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/StringSwitch.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/FormatVariadic.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/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    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