Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 60 for compilation_result_ (0.3 sec)

  1. tensorflow/compiler/jit/xla_launch_util.cc

        OpKernelContext* ctx,
        const XlaCompiler::CompilationResult& compilation_result,
        int missing_ctx_input_prefix) {
      std::vector<VariableInfo> out;
      out.reserve(compilation_result.resource_updates.size());
      for (int i = 0; i < compilation_result.resource_updates.size(); ++i) {
        const XlaCompiler::ResourceUpdate& write =
            compilation_result.resource_updates[i];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_compile_util.cc

        const std::vector<XlaCompiler::Argument>& args,
        DeviceCompileMode compile_mode, bool has_ref_vars,
        bool may_alias_resource_update, FunctionLibraryRuntime* flr,
        ResourceMgr* rm, const XlaCompiler::CompilationResult** compilation_result,
        xla::PjRtClient** client, xla::PjRtLoadedExecutable** executable) {
      PjRtDeviceCompiler* pjrt_device_compiler;
      DeviceCompilationProfiler* profiler;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/pjrt_compile_util_test.cc

          DeviceCompileMode::kStrict, /*has_ref_vars=*/true,
          /*may_alias_resource_update=*/true, device_setup.flr(), &resource_mgr,
          &compilation_result, &pjrt_client, &pjrt_executable));
    
      EXPECT_TRUE(compilation_result != nullptr);
      EXPECT_TRUE(pjrt_executable != nullptr);
      EXPECT_TRUE(pjrt_client != nullptr);
    }
    
    TEST(PjrtCompileUtilTest, CompileToPjRtLoadedExecutableWithOpKernelContext) {
      DeviceSetup device_setup;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 21 23:21:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_executable_persistor.h

        uint64 signature_hash, const XlaCompiler::Options& options,
        const XlaCompiler::CompilationResult& compilation_result,
        const ExecutableType& executable,
        DeviceCompilerClient<ExecutableType, ClientType>* compiler_client) const {
      XlaSerializedCacheEntry serialized_entry;
      const xla::HloModuleProto& hlo_module =
          compilation_result.computation->proto();
      *serialized_entry.mutable_key() =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_compile_util.h

        const NameAttrList& function,
        const std::vector<XlaCompiler::Argument>& args,
        DeviceCompileMode compile_mode, bool has_ref_vars,
        bool may_alias_resource_update,
        const XlaCompiler::CompilationResult** compilation_result,
        xla::PjRtClient** client, xla::PjRtLoadedExecutable** executable);
    
    // Similar to the above function but it does not take a OpKernelContext.
    // Instead, it takes the following arguments that are obtained from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.h

    // in the compilation_result.
    absl::StatusOr<std::string> CompileFromMlirToXlaHlo(
        bool lower_to_xla_hlo, const tpu::MlirToHloArgs& computation,
        const tpu::TPUCompileMetadataProto& metadata, llvm::StringRef device_type,
        const XlaShapeLayoutHelpers::ShapeDeterminationFns& shape_determination_fns,
        bool use_tuple_args, XlaCompiler::CompilationResult* compilation_result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      GuaranteedConsts consts;
    
      *compilation_result = {};
    
      TF_RETURN_IF_ERROR(CompileTFFunctionToHlo(
          *flib_def, versions.producer(), shape_determination_funcs, arg_shapes,
          consts, func, metadata, client, arg_core_mapping, per_core_arg_shapes,
          use_tuple_args, compilation_result));
    
      return PopulateInputOutputAliasing(main_fn, compilation_result,
                                         use_tuple_args);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_executable_persistor_test.cc

        XlaCompiler compiler(DefaultXlaOptions());
    
        XlaCompiler::CompilationResult compilation_result;
        TF_RETURN_IF_ERROR(compiler.CompileGraph(XlaCompiler::CompileOptions(),
                                                 "graph", std::move(graph), args,
                                                 &compilation_result));
        return compilation_result;
      }
    
      XlaCompiler::Options DefaultXlaOptions() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.h

        std::vector<tpu::ShardingAndIndex>* arg_core_mapping,
        std::vector<std::vector<xla::Shape>>* per_core_arg_shapes,
        xla::CompileOnlyClient* client,
        XlaCompiler::CompilationResult* compilation_result);
    
    }  // namespace v1
    }  // namespace tf2xla
    };  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:08:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

        const XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns,
        XlaCompilationResult* compilation_result);
    
    // Runs MLIR Bridge on a MLIR module.
    //
    // If lower_to_xla_hlo is true then compiles down into XLA HLO, generates all
    // accompanying metadata and stores them in CompilationResult.
    //
    // If enable_op_fallback is set to false, graph is legalized only if the graph
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top