@@ -2295,7 +2295,7 @@ PjRtStreamExecutorClient::CompileInternal(
22952295 LayoutCanonicalizationCallback layout_canonicalization_callback,
22962296 CompileOptions options, bool lookup_addressable_devices) {
22972297 tsl::profiler::TraceMe traceme (" PjRtStreamExecutorClient::CompileInternal" );
2298- VLOG ( 1 ) << " PjRtStreamExecutorClient::CompileInternal" ;
2298+ LOG (ERROR ) << " PjRtStreamExecutorClient::CompileInternal" ;
22992299 if (key_value_store ().has_value () &&
23002300 !options.executable_build_options .key_value_store ()) {
23012301 options.executable_build_options .set_key_value_store (*key_value_store ());
@@ -2331,6 +2331,7 @@ PjRtStreamExecutorClient::CompileInternal(
23312331 return Unimplemented (" Multiple executables are not supported" );
23322332 }
23332333
2334+ LOG (ERROR) << " Returning executable" ;
23342335 return BuildPjRtExecutable (xla_dump_hlo_unoptimized_snapshots
23352336 ? std::make_optional (computation.proto ())
23362337 : std::nullopt ,
@@ -2708,6 +2709,7 @@ PjRtStreamExecutorClient::LoadInternal(
27082709 std::move (*unoptimized_hlo_module_proto),
27092710 compile_options.executable_build_options .debug_options ());
27102711 }
2712+ LOG (ERROR) << " Returning loaded executable" ;
27112713 return std::unique_ptr<PjRtLoadedExecutable>(std::move (executable));
27122714}
27132715
@@ -2719,7 +2721,7 @@ PjRtStreamExecutorClient::Load(std::unique_ptr<PjRtExecutable> executable,
27192721 CompileOptions compile_options = se_executable->compile_options ();
27202722
27212723 tsl::profiler::TraceMe traceme (" PjRtStreamExecutorClient::Load" );
2722- VLOG ( 1 ) << " PjRtStreamExecutorClient::Load" ;
2724+ LOG (ERROR ) << " PjRtStreamExecutorClient::Load" ;
27232725
27242726 TF_ASSIGN_OR_RETURN (auto local_executable, se_executable->ConsumeExecutable (
27252727 client (), compile_options));
0 commit comments