Add a test to check that GIL remains disabled under free-threaded Python.

Also add manual `Py_GIL_DISABLED` macro definition in CMakeLists as well, since there are some STATIC libraries that aren't getting it automatically through pybind11. As originally proposed in PR #3259.

Co-authored-by: Devansh Raulo <151062727+devansh0703@users.noreply.github.com>
PiperOrigin-RevId: 942216446
Change-Id: I9ef5f457491ae776c452912fbfa8617b8509d47c
This commit is contained in:
Saran Tunyasuvunakool
2026-07-03 12:10:15 -07:00
committed by Copybara-Service
parent 17feb4a64e
commit 4b345457a8
2 changed files with 48 additions and 0 deletions
+13
View File
@@ -68,6 +68,19 @@ add_link_options("${MUJOCO_HARDEN_LINK_OPTIONS}")
find_package(Python3 COMPONENTS Interpreter Development)
# Detect free-threaded Python and enable Py_GIL_DISABLED.
# This is needed because we have some STATIC libraries that do not automatically
# get the Py_GIL_DISABLED macro definition through pybind11.
execute_process(
COMMAND ${Python3_EXECUTABLE} -c "import sysconfig; print(sysconfig.get_config_var('Py_GIL_DISABLED') or 0)"
OUTPUT_VARIABLE PYTHON_GIL_DISABLED
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if(PYTHON_GIL_DISABLED EQUAL "1")
message(STATUS "Free-threaded Python detected, enabling Py_GIL_DISABLED")
add_compile_definitions(Py_GIL_DISABLED)
endif()
include(FindOrFetch)
# ==================== MUJOCO LIBRARY ==========================================
+35
View File
@@ -0,0 +1,35 @@
# Copyright 2026 DeepMind Technologies Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Tests for GIL-free operation under free-threaded Python."""
import sys
import sysconfig
from absl.testing import absltest
import mujoco # pytype: disable=unused-import
class GilDisabledTest(absltest.TestCase):
@absltest.skipUnless(
sysconfig.get_config_var('Py_GIL_DISABLED'),
'Not running under free-threaded Python',
)
def test_gil_is_disabled(self):
self.assertFalse(sys._is_gil_enabled()) # pylint: disable=protected-access
if __name__ == '__main__':
absltest.main()