Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for detailed_logging (0.17 sec)

  1. tensorflow/compiler/jit/device_compiler_client_test.cc

    namespace tensorflow {
    namespace {
    
    TEST(GetExecutableOptionTest, Basic) {
      XlaCompiler::Options options;
      options.device_ordinal = 0;
      options.alias_passthrough_params = true;
      options.detailed_logging = true;
      XlaCompiler::CompilationResult result;
      xla::Shape xla_output_shape;
      result.xla_output_shape = xla_output_shape;
    
      auto build_option =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 20:35:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_compiler_options_util.cc

              << ",populate_resource_manager=" << options.populate_resource_manager
              << ",alias_passthrough_params=" << options.alias_passthrough_params
              << ",detailed_logging=" << options.detailed_logging << "]";
    }
    }  // namespace
    
    XlaCompiler::Options GenerateCompilerOptions(
        const XlaDeviceCompiler& xla_device_compiler,
        const FunctionLibraryRuntime& function_library, DeviceBase* device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler_client.cc

      build_options.set_alias_passthrough_params(options.alias_passthrough_params);
      build_options.mutable_debug_options()->set_xla_detailed_logging(
          options.detailed_logging);
      if (tensorflow::OpDeterminismRequired()) {
        build_options.mutable_debug_options()->set_xla_gpu_deterministic_ops(true);
      }
      return build_options;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 20:35:26 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

          GenerateCompilerOptionsForPjRt(*(ctx->function_library()), ctx->device(),
                                         platform_info_, *pjrt_device_compiler);
      // No detailed logging for on demand op.
      options.detailed_logging = false;
      XlaCompiler::CompileOptions compile_options = GetCompileOptions(true);
    
      return (*pjrt_device_compiler)
          ->CompileSingleOpIfNeeded(options, args, compile_options, ctx, *profiler,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/get_compiler_ir.cc

      build_options.set_alias_passthrough_params(options.alias_passthrough_params);
      build_options.mutable_debug_options()->set_xla_detailed_logging(
          options.detailed_logging);
      // If the embed_ir_in_executable is set, hlo_proto will be dumped in
      // executable. The hlo_proto contains HLO modules and buffer assignment.
      build_options.mutable_debug_options()->set_xla_embed_ir_in_executable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top