Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for _xla (0.05 sec)

  1. tensorflow/compiler/mlir/lite/BUILD

            "@llvm-project//mlir:Support",
            "@llvm-project//mlir:TransformUtils",
            "@llvm-project//mlir:Transforms",
            "@local_xla//xla:status",
            "@local_xla//xla:statusor",
            "@local_xla//xla/mlir_hlo",
            "@stablehlo//:stablehlo_ops",
        ],
    )
    
    cc_library(
        name = "tensorflow_lite_optimize",
        srcs = [
            "transforms/generated_optimize.inc",
            "transforms/optimize.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_XlaRecvOp : TF_Op<"XlaRecv", [TF_RecvSideEffect]> {
      let summary = [{
    Receives the named tensor from another XLA computation. Wraps the XLA Recv
      }];
    
      let description = [{
    operator documented at
     https://www.tensorflow.org/performance/xla/operation_semantics#recv .
      }];
    
      let arguments = (ins
        StrAttr:$tensor_name,
        TF_ShapeAttr:$shape
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TPUValidateInputsPass : Pass<"tf-tpu-validate-inputs", "ModuleOp"> {
      let summary = "Validates inputs to the TPU TF/XLA bridge";
    
      let description = [{
        This pass checks that the IR has valid input to TPU TF/XLA bridge.
        It checks the relations of multiple ops. Properties of single ops are
        checked by the 'verify' method of ops.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. configure.py

                    ' of compute capabilities excluding version %s.' % ver)
                all_valid = False
              if ver < 35:
                print('WARNING: XLA does not support CUDA compute capabilities '
                      'lower than sm_35. Disable XLA when running on older GPUs.')
          else:
            ver = float(m.group(0))
            if ver < 3.0:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. RELEASE.md

            Eager mode.
    
    *   `tf.lite`:
    
        *   Enable TFLite experimental new converter by default.
    
    *   XLA
    
        *   XLA now builds and works on windows. All prebuilt packages come with XLA
            available.
        *   XLA can be
            [enabled for a `tf.function`](https://www.tensorflow.org/xla#explicit_compilation_with_tffunction)
            with “compile or throw exception” semantics on CPU and GPU.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

              devices.device_names(), num_replicas, num_cores_per_replica,
              topology_attr.getValue(), status_or_device_coodinates.value());
      return success();
    }
    
    // Move a broadcast into the XLA cluster, converting it to an XlaAllReduce. This
    // skips if the element type is not known to be valid for XlaAllReduce.
    LogicalResult MoveBroadcastToCluster(OpBuilder& builder,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h"
    #include "xla/mlir_hlo/mhlo/transforms/passes.h"
    
    namespace mlir {
    /// Create a pass to convert from the TFExecutor to the TF control dialect.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTFExecutorToControlDialectConversion();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/translate_utils.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/verify_suitable_for_graph_export.h"
    #include "tensorflow/compiler/mlir/utils/name_utils.h"
    #include "xla/status_macros.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/graph_to_functiondef.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            op, input.getType(), scalar_zero,
            ArrayRef<Value>({slice1, expanded_item, slice2}));
        return success();
      }
    
      // This function rewrites the original op into a XLA DynamicUpdateSlice op.
      // |item| is expanded to have the same dimension as input_handle and
      // |index| is expanded to [index, 0, 0, ...] as the indices to input_handle.
      // On a high level, it's doing something like:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "DynamicUpdateSlice.";
      let description = [{
        DynamicUpdateSlice op that have the same semantics with XLA
        DynamicUpdateSlice.
        Generates a result which is the value of the input array
        operand, with a slice update overwritten at start_indices.
    
        See https://www.tensorflow.org/xla/operation_semantics#dynamicupdateslice.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top