Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for xla_run (0.11 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.h

    #include "tensorflow/core/common_runtime/optimization_registry.h"
    #include "tensorflow/core/lib/core/status.h"
    
    namespace tensorflow {
    
    // Replaces TF function calls marked with `_XlaCompiledKernel` with _XlaCompile
    // and _XlaRun nodes (which compile and launch, respectively, the corresponding
    // HLO module).
    class BuildXlaOpsPass : public GraphOptimizationPass {
     public:
      // If enable_lazy_compilation is not nullopt then *enable_lazy_compilation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 03 16:15:20 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.play.tasks.PlayRun.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops.mlir

    }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
    // Test not hoisting callees in xla launch functions.
    
    // CHECK-LABEL: func private @xla_func
    func.func private @xla_func(%arg0: tensor<1x3xf32>) -> tensor<1x3xf32>
      attributes {tf._input_shapes = [#tf_type.shape<1x3>, #tf_type.shape<*>], tf.signature.is_stateful} {
      // CHECK-NOT: tf._TfrtGetResource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 23:54:14 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_device_ops.h

                                  .HostMemory("resources"),             \
                              KERNEL);
    
    #define REGISTER_XLA_RUN_KERNEL(DEVICE, KERNEL, TYPES) \
      REGISTER_KERNEL_BUILDER(Name("_XlaRun").Device(DEVICE), KERNEL);
    
    #define REGISTER_XLA_DEVICE_KERNELS(DEVICE, TYPES)                             \
      REGISTER_KERNEL_BUILDER(                                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

        These operations do not map 1-1 to TensorFlow ops and requires a lowering
        pass later to transform them into Compile/Run op pairs, like XlaCompile and
        XlaRun.
    }];
    
      let cppNamespace = "::mlir::tf_device";
    }
    
    //===----------------------------------------------------------------------===//
    // TensorFlow Device Dialect Ops definitions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/partially_decluster_pass.cc

        // benefit of this check.
        // TODO(tpopp): Only apply this if the value being consumed is not output
        // from the cluster to another consumer.
        // TODO(tpopp): See if XlaRun can be modified to avoid this issue
        // completely.
        if (IsShapeConsumerOp(*n)) {
          continue;
        }
        // We assume the only XLA-auto-clusterable operations with side effects are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      %1 = "tf.AddV2"(%arg0, %arg1) {__op_key = 0: i32} : (tensor<1x3xf32>, tensor<1x3xf32>) -> tensor<1x3xf32>
      func.return %1 : tensor<1x3xf32>
    }
    
    // CHECK-LABEL: func @xla_func
    func.func @xla_func(%arg0: tensor<1x3xf32>) -> tensor<*xf32> attributes {tf.entry_function = {control_outputs = "", inputs = "input:0", outputs = "output:0"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util_test.cc

        CompileToExecutable(args, &result, &executable);
      }
    
      // Must-be-constant inputs that appear in the beginning are stripped out at
      // the time of execution i.e. in XlaRun.
      inputs = {inputs.begin() + constant_input_indices.size(), inputs.end()};
      {
        TF_ASSERT_OK_AND_ASSIGN(std::vector<VariableInfo> updated_variables,
                                GatherVariableInfo(context_.get(), *result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    def TF_NcclAllReduceOrderingResource : TF_ResourceBase<"NcclAllReduceOrdering">;
    def TF_GlobalIterIdResource : TF_ResourceBase<"GlobalIterId">;
    def TF__XlaRunResource : TF_ResourceBase<"_XlaRun">;
    // Fake resource, see `TF_MustExecute` below.
    def TF_MustExecuteResource : TF_ResourceBase<"MustExecute">;
    
    // Value-based side effects
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    namespace tensorflow {
    
    namespace {
    using DeadnessPredicate = DeadnessAnalysis::DeadnessPredicate;
    using jit::DeviceId;
    using jit::DeviceSet;
    
    // The clusters we create here are eventually lowered into an
    // _XlaCompile/_XlaRun pair with a TF executor "fallback" that uses the
    // PartitionedCall op to execute the cluster in the regular graph executor if
    // need be.  PartitionedCall, however, reruns the entire TF graph optimization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top