Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,130 for computation (0.29 sec)

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

        const std::variant<MlirToHloArgs, FunctionToHloArgs>& computation) {
      if (computation.index() == 1) return true;
    
      return std::get<0>(computation).rollout_state ==
             ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_DISABLED;
    }
    
    void DumpComputationInput(
        const std::variant<tpu::MlirToHloArgs, tpu::FunctionToHloArgs>
            computation) {
      if (!VLOG_IS_ON(2)) {
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 00:40:46 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/test_google.cc

    // clang-format on
    
    namespace tensorflow {
    namespace tfcompile {
    namespace {
    
    void zero_buffers(XlaCompiledCpuFunction* computation) {
      for (int i = 0; i < computation->num_args(); ++i) {
        memset(computation->arg_data(i), 0, computation->arg_size(i));
      }
    }
    
    // Trivial test that runs the generated function to ensure it doesn't crash.
    TEST(TEST_NAME, NoCrash) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Cached.java

            private Callable<T> computation;
            private Try<T> result;
    
            public Deferred(Callable<T> computation) {
                this.computation = computation;
            }
    
            @Override
            public T get() {
                return result().get();
            }
    
            private Try<T> result() {
                if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/compile.cc

      return true;
    }
    
    namespace {
    
    // Compiles the XLA computation into executable code.
    Status CompileXla(xla::CompileOnlyClient* client,
                      const xla::XlaComputation& computation,
                      const xla::cpu::CpuAotCompilationOptions& aot_opts,
                      CompileResult* compile_result) {
      // Retrieves arg and result layouts from the computation.
      // TODO(toddw): Should we let the user choose the major/minor ordering?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_util.h

    // Attribute indicating that this is an IdentityN node receiving inputs for a
    // outside compilation Placeholder node (the original outside compilation node
    // is moved out of TPU computation, and we left a Placeholder node there).
    // Attribute value will be a string, which is the outside compilation cluster
    // name for the outside compilation Placeholder node.
    extern const char kXlaOutsideCompilationInputsAttrName[];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_resource_partitioning.mlir

      %1 = "tf.ReadVariableOp"(%0) : (tensor<!tf_type.resource<tensor<i32>>>) -> tensor<i32>
      // CHECK:      [[COMPUTATION:%.+]] = "tf_device.cluster_func"([[INPUT]])
      %2 = "tf_device.cluster_func"(%1) {func = @computation, use_spmd_for_xla_partitioning = true} : (tensor<i32>) -> tensor<i32>
      // CHECK:      [[OUTPUT:%.+]]:2 = "tf.TPUPartitionedOutputV2"([[COMPUTATION]])
      // CHECK-SAME: _XlaSharding = ""
      // CHECK-SAME: partition_dims = []
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    // xla_cluster_name: XLA cluster name for this XLA computation. We need it
    //   because XLA cluster name might be different from `func_name`.
    // func_name_attrs: they will be used to instantiate the XLA computation func.
    // new_func_name: new function name for rewritten XLA computation func.
    // host_compute_core: mapping from outside compilation cluster name to XLA
    //   device assignment.
    // fld: FunctionLibraryDefinition object.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/test.cc

    // clang-format on
    
    namespace tensorflow {
    namespace tfcompile {
    namespace {
    
    void zero_buffers(XlaCompiledCpuFunction* computation) {
      for (int i = 0; i < computation->num_args(); ++i) {
        memset(computation->arg_data(i), 0, computation->arg_size(i));
      }
    }
    
    // Trivial test that runs the generated function to ensure it doesn't crash.
    TEST(TEST_NAME, NoCrash) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.cc

          /*lower_to_xla_hlo=*/true, computation, metadata, device_type,
          shape_determination_fns, use_tuple_args, compilation_result,
          custom_legalization_passes, arg_shapes, arg_core_mapping,
          per_core_arg_shapes);
    
      if (mlir_bridge_status.ok()) {
        VLOG(1) << "Successfully compiled MLIR computation to XLA HLO using MLIR "
                   "tf2xla bridge";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

      xla::Tuple(&builder, tuple_values);
    
      TF_ASSERT_OK_AND_ASSIGN(XlaComputation computation, builder.Build());
      EXPECT_EQ(computation.proto().computations_size(), 2);
    
      TF_ASSERT_OK(CreateMlirModule());
      TF_ASSERT_OK_AND_ASSIGN(TupleOp root_tuple,
                              ImportXlaComputationIntoModule(computation));
      EXPECT_TRUE(root_tuple);
    
      int num_func_ops = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top