Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for _xla (0.04 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    #include "tensorflow/compiler/mlir/tf2xla/internal/utils/test_metadata_config.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "xla/client/client_library.h"
    #include "xla/stream_executor/platform_manager.h"
    #include "tensorflow/core/lib/monitoring/cell_reader.h"
    #include "tensorflow/core/lib/monitoring/test_utils.h"
    #include "tensorflow/core/platform/env.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    #include "tensorflow/c/experimental/stream_executor/stream_executor.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "xla/stream_executor/executor_cache.h"
    #include "xla/stream_executor/platform.h"
    #include "xla/stream_executor/stream_common.h"
    #include "xla/stream_executor/stream_executor.h"
    #include "tsl/platform/statusor.h"
    
    namespace stream_executor {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "xla/mlir_hlo/mhlo/IR/register.h"
    #include "xla/mlir_hlo/mhlo/transforms/passes.h"
    #include "tensorflow/core/ir/types/dialect.h"
    
    int main(int argc, char** argv) {
      tensorflow::InitMlir y(&argc, &argv);
    
      mlir::registerAllPasses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/device_util.h"
    #include "tensorflow/compiler/mlir/utils/string_container_utils.h"
    #include "xla/array4d.h"
    #include "xla/service/computation_placer.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/protobuf/tpu/topology.pb.h"
    #include "tensorflow/core/util/device_name_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/python/BUILD

            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Support",
            "@local_xla//xla/service:hlo_parser",
            "@local_xla//xla/service:hlo_proto_cc",
            "@local_xla//xla/translate/hlo_to_mhlo:hlo_to_mlir_hlo",
        ],
    )
    
    # Smaller version of flatbuffer_translate which only converts flatbuffer to MLIR.
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.cc

    #include "tensorflow/c/tf_status_helper.h"
    #include "xla/stream_executor/executor_cache.h"
    #include "xla/stream_executor/host_memory_allocation.h"
    #include "xla/stream_executor/memory_allocation.h"
    #include "xla/stream_executor/platform.h"
    #include "xla/stream_executor/platform_manager.h"
    #include "xla/stream_executor/stream.h"
    #include "xla/stream_executor/stream_executor.h"
    #include "xla/stream_executor/stream_executor_common.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. .bazelrc

    #     --config=dbg --per_file_copt=+tensorflow/core/kernels/identity_op.*@-g
    # Since this .bazelrc file is synced between the tensorflow/tensorflow repo and
    # the openxla/xla repo, also include debug info for files under xla/.
    build:dbg --per_file_copt=+.*,-tensorflow.*,-xla.*@-g0
    build:dbg --per_file_copt=+tensorflow/core/kernels.*@-g0
    # for now, disable arm_neon. see: https://github.com/tensorflow/tensorflow/issues/33360
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/xla_broadcast.mlir

    // RUN: tf-opt %s -split-input-file -tf-xla-broadcast | FileCheck %s
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    bool ShapeInference::InferShapeForXlaGatherOp(XlaGatherOp op) {
      xla::Shape input_shape = xla::TypeToShape(op.getOperand().getType());
      if (input_shape == xla::Shape() || input_shape.is_unbounded_dynamic())
        return false;
    
      xla::Shape start_indices_shape =
          xla::TypeToShape(op.getStartIndices().getType());
      if (start_indices_shape == xla::Shape()) return false;
    
      xla::GatherDimensionNumbers gather_dim_numbers;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    #include "tensorflow/compiler/mlir/tf2xla/transforms/utils.h"
    #include "xla/client/lib/conv_grad_size_util.h"
    #include "xla/client/padding.h"
    #include "xla/client/sharding_builder.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "xla/mlir_hlo/utils/convert_op_folder.h"
    #include "xla/mlir_hlo/utils/hlo_utils.h"
    #include "xla/translate/hlo_to_mhlo/attribute_importer.h"
    #include "xla/xla_data.pb.h"
    #include "tensorflow/core/framework/kernel_shape_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top