Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 232 for _xla (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/utils.h

    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace mhlo {
    
    // Builds body for reduce op by using the template binary op as the
    // reducer op.
    template <typename Op>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.h

    // to facilitate transformations like resource op lifting.
    // NOTE: These patterns do not support `use_locking=true` for a lot of resource
    // operations. So decomposition may not be correct outside of backends like XLA,
    // which automatically locks all resource variables.
    void PopulateDecomposeResourceOpsPatterns(MLIRContext *context,
                                              RewritePatternSet *patterns);
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

            "//:__subpackages__",
            "@upb//:__subpackages__",
            "@XNNPACK//:__subpackages__",
            "@zlib//:__subpackages__",
            "@local_tsl//tsl:__subpackages__",
            "@local_xla//xla:__subpackages__",
        ],
        deps = [
            ":tac_wrapper_lib",
            "//tensorflow/python/lib/core:pybind11_lib",
            "//third_party/python_runtime:headers",
            "@pybind11",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.cc

      return (*mlir_module)->lookupSymbol<func::FuncOp>("host_func");
    }
    
    //===----------------------------------------------------------------------===//
    // XLA Send/Recv ops
    //===----------------------------------------------------------------------===//
    
    // For XLA Send/Recv ops the key corresponds to the resource instance.
    
    std::optional<std::string> _XlaRecvAtHostOp::GetResourceInstanceStr() {
      return getKey().str();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 20:05:58 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_targets.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    #include "tensorflow/core/platform/errors.h"
    
    namespace mlir {
    namespace mhlo {
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/dialects.md

    # MLIR dialects
    
    ## Overview
    
    
    To separate different hardware and software targets, MLIR has “dialects”,
    including:
    
    * TensorFlow IR, which represents all things possible in TensorFlow graphs.
    * XLA HLO IR, which is designed to take advantage of XLA’s compilation
      abilities (with output to, among other things, TPUs).
    * An experimental affine dialect, which focuses on
      [polyhedral representations](https://en.wikipedia.org/wiki/Polytope_model)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 21 01:37:38 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/BUILD

            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:FuncDialect",
            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Pass",
            "@llvm-project//mlir:Support",
            "@local_xla//xla/mlir_hlo",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:42:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/c/tf_status_helper.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/tf_status_helper.h"
    
    #include <string>
    
    #include "tensorflow/c/tf_status.h"
    #include "xla/tsl/c/tsl_status_helper.h"
    
    namespace tsl {
    
    void Set_TF_Status_from_Status(TF_Status* tf_status,
                                   const absl::Status& status) {
      TF_SetStatus(tf_status, TSLCodeFromStatusCode(status.code()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/custom_call.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_TRANSFORMS_LEGALIZE_HLO_CONVERSIONS_CUSTOM_CALL_H_
    
    #include <optional>
    
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    class ConvertCustomCallOp : public OpConversionPattern<mhlo::CustomCallOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 02:41:24 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/decode_attributes_hook.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/constant_fold.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.h"
    #include "xla/stream_executor/stream_executor.h"
    #include "tensorflow/core/framework/logging.h"
    #include "tsl/platform/statusor.h"
    
    namespace mlir {
    namespace {
    
    }  // anonymous namespace
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top