From 0e06652e5b48b986df2f9fdb2e265103e2fd9717 Mon Sep 17 00:00:00 2001 From: Will Cromar Date: Wed, 29 Nov 2023 23:43:01 +0000 Subject: [PATCH] format --- torch_xla/csrc/runtime/runtime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torch_xla/csrc/runtime/runtime.cc b/torch_xla/csrc/runtime/runtime.cc index 02e80c10e3a9..8c50481112c4 100644 --- a/torch_xla/csrc/runtime/runtime.cc +++ b/torch_xla/csrc/runtime/runtime.cc @@ -34,7 +34,7 @@ ComputationClient* GetComputationClient(bool create = true) { static std::unique_ptr client = nullptr; if (!client && create) { static std::once_flag flag; - std::call_once(flag, [](){ client = CreateClient(); }); + std::call_once(flag, []() { client = CreateClient(); }); } return client.get(); }