Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 132 for statusPort (0.32 sec)

  1. tensorflow/compiler/aot/compile.cc

    #include "tensorflow/compiler/tf2xla/tf2xla_util.h"
    #include "xla/client/client_library.h"
    #include "xla/client/compile_only_client.h"
    #include "xla/client/xla_computation.h"
    #include "xla/service/cpu/cpu_compiler.h"
    #include "xla/statusor.h"
    #include "xla/stream_executor/platform_manager.h"
    #include "xla/util.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/lib/core/errors.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

    constexpr absl::string_view kGroupKeyAttrName =
        "tf2xla.collective_info.group_key";
    
    // Extracts shape from XlaArgument as TensorShape. If shape is a xla::Shape,
    // that is converted to a TensorShape.
    absl::StatusOr<TensorShape> GetTensorShapeFromXlaArgument(
        const XlaArgument& arg) {
      if (absl::holds_alternative<xla::Shape>(arg.shape)) {
        TensorShape arg_shape;
        TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      Status AddInstructionNode(Operation* inst);
      void UseOriginalFunctionNames(NodeDef& node_def);
    
      Status AddEdge(Operation* inst);
    
      absl::StatusOr<std::unique_ptr<NodeDef>> GetArgumentNode(
          BlockArgument arg, unsigned index, llvm::StringRef name);
      absl::StatusOr<std::unique_ptr<NodeDef>> GetReturnNode(FuncOp function,
                                                             Value operand,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      Status AddInstructionNode(Operation* inst);
      void UseOriginalFunctionNames(NodeDef& node_def);
    
      Status AddEdge(Operation* inst);
    
      absl::StatusOr<std::unique_ptr<NodeDef>> GetArgumentNode(
          BlockArgument arg, unsigned index, llvm::StringRef name);
      absl::StatusOr<std::unique_ptr<NodeDef>> GetReturnNode(FuncOp function,
                                                             Value operand,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    #include "tensorflow/core/tpu/kernels/tpu_compile_op_support.h"
    #include "tensorflow/core/util/debug_data_dumper.h"
    #include "tsl/lib/core/status_test_util.h"
    #include "tsl/lib/monitoring/test_utils.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    using ::tensorflow::monitoring::testing::CellReader;
    using ::testing::Not;
    using ::testing::TestWithParam;
    using tpu::FunctionToHloArgs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

    #include <optional>
    #include <string>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "llvm/Support/ToolOutputFile.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

    ==============================================================================*/
    
    #include <cstdint>
    #include <memory>
    #include <string>
    #include <unordered_map>
    
    #include "absl/log/log.h"
    #include "absl/status/statusor.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Casting.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_LIFTTFLITEFLEXOPSPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    using ::tensorflow::StatusOr;
    
    constexpr StringRef kFlexOpNamePrefix = "Flex";
    
    // Pattern that converts TFL::CustomOp that encodes a Flex op into a TF dialect
    // operation.
    class LiftFlexCustomOp : public OpRewritePattern<TFL::CustomOp> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h"
    #include "tensorflow/compiler/tf2xla/kernels/xla_call_module_loader.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"  // IWYU pragma: keep
    #include "tsl/platform/statusor.h"
    
    namespace mlir {
    namespace TF {
    namespace {
    
    #define GEN_PASS_DEF_XLACALLMODULEDESERIALIZATIONPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/tpu/kernels/tpu_compile_op_support.h"
    #include "tensorflow/core/tpu/tpu_compile.h"
    #include "tensorflow/core/util/debug_data_dumper.h"
    #include "tsl/lib/monitoring/sampler.h"
    #include "tsl/platform/errors.h"
    #include "tsl/platform/status.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top