Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 205 for _xla (0.03 sec)

  1. tensorflow/compiler/jit/flags.cc

               "Minimum number of operators in an XLA compilation. Ignored for "
               "operators placed on an XLA device or operators explicitly marked "
               "for compilation."),
          Flag("tf_xla_max_cluster_size",
               &mark_for_compilation_flags->tf_xla_max_cluster_size,
               "Maximum number of operators in an XLA compilation."),
          Flag(
              "tf_xla_ops_to_cluster",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/BUILD

            "@local_xla//xla:xla_data_proto_cc",
            "@local_xla//xla/client:client_library",
            "@local_xla//xla/client:compile_only_client",
            "@local_xla//xla/client:xla_computation",
            "@local_xla//xla/service:compiler",
            "@local_xla//xla/service/cpu:buffer_info_util",
            "@local_xla//xla/service/cpu:cpu_compiler",
            "@local_xla//xla/stream_executor:platform_manager",
        ],
    )
    
    tf_cc_test(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/BUILD

            "@local_tsl//tsl/platform:protobuf",
            "@local_xla//xla/client:client_library",
            "@local_xla//xla/client:compile_only_client",
            "@local_xla//xla/service/cpu:cpu_compiler",
            "@local_xla//xla/service/cpu:cpu_transfer_manager",
            "@local_xla//xla/stream_executor",
            "@local_xla//xla/stream_executor/host:host_platform",
            "@local_xla//xla/stream_executor/host:host_platform_id",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

    #include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
    #include "tensorflow/compiler/tf2xla/xla_context.h"
    #include "tensorflow/compiler/tf2xla/xla_expression.h"
    #include "xla/client/xla_builder.h"
    #include "xla/client/xla_computation.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "tensorflow/core/common_runtime/device_mgr.h"
    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace mlir {
    namespace mhlo {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

          $resource,
          (TF_SubOp
            (CreateTFReadVariableOp $src_op, $value, $resource),
            $value
          ),
          (CreateConstBoolAttrFalse)
        )
      >;
    
    // This decomposition is only correct inside XLA as it ignores use_locking
    // attribute.
    def DecomposeResourceApplyGradientDescentOp :
      Pat<
        (TF_ResourceApplyGradientDescentOp:$src_op $resource, $alpha, $delta, BoolAttr:$_),
        (TF_AssignVariableOp
          $resource,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    //     eliminates the use of resource variables.
    //   . Legalizes the operations to XLA HLO operations.
    //   . Canonicalizes the XLA HLO operations.
    //
    // device_type: XLA JIT device to use for compilation such as "XLA_CPU_JIT",
    //   "XLA_GPU_JIT" or "XLA_TPU_JIT".
    // use_tuple_args: when this is true, always create a tuple argument for the
    //   entry computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/BUILD

            "@local_xla//xla/client:xla_computation",
            "@local_xla//xla/hlo/ir:hlo",
            "@local_xla//xla/mlir_hlo",
            "@local_xla//xla/mlir_hlo:hlo_dialect_registration",
            "@local_xla//xla/mlir_hlo:mhlo_passes",
            "@local_xla//xla/translate/mhlo_to_hlo:layout_util",
            "@local_xla//xla/translate/mhlo_to_hlo:mlir_hlo_to_hlo",
            "@local_xla//xla/translate/mhlo_to_hlo:type_to_shape",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

      for (mlir::BlockArgument& arg : block.getArguments()) {
        auto num = arg.getArgNumber();
        xla::Shape shape = xla::TypeToShape(arg.getType());
        xla::XlaOp argop =
            xla::Parameter(&builder, num, shape, absl::StrCat("Arg_", num));
        xla_params.push_back(argop);
      }
    
      std::vector<xla::XlaOp> returns(1);
      TF_RETURN_IF_ERROR(BuildHloFromTf(module_op, builder, xla_params, returns,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "xla/client/compile_only_client.h"
    #include "xla/hlo/ir/hlo_input_output_alias_config.h"
    #include "xla/mlir_hlo/mhlo/IR/register.h"
    #include "xla/shape.h"
    #include "xla/shape_util.h"
    #include "xla/status_macros.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/op.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf.h

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tf2xla/api/v2/device_type.pb.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    #include "xla/client/compile_only_client.h"
    #include "xla/pjrt/compile_options.pb.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/tpu/kernels/tpu_compile.pb.h"
    #include "tensorflow/core/tpu/kernels/tpu_compile_op_support.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 07:32:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top