Classes | Functions | Variables
test_gil_scoped Namespace Reference

Classes

class  ExtendedVirtClass
 

Functions

def _intentional_deadlock ()
 
def _run_in_process (target, *args, **kwargs)
 
def _run_in_threads (test_fn, num_threads, parallel)
 
def test_all_basic_tests_completeness ()
 
def test_callback_pure_virtual_func ()
 
def test_callback_py_obj ()
 
def test_callback_std_func ()
 
def test_callback_virtual_func ()
 
def test_cross_module_gil_acquired ()
 
def test_cross_module_gil_inner_custom_acquired ()
 
def test_cross_module_gil_inner_custom_released ()
 
def test_cross_module_gil_inner_pybind11_acquired ()
 
def test_cross_module_gil_inner_pybind11_released ()
 
def test_cross_module_gil_nested_custom_acquired ()
 
def test_cross_module_gil_nested_custom_released ()
 
def test_cross_module_gil_nested_pybind11_acquired ()
 
def test_cross_module_gil_nested_pybind11_released ()
 
def test_cross_module_gil_released ()
 
def test_multi_acquire_release_cross_module ()
 
def test_nested_acquire ()
 
def test_release_acquire ()
 
def test_run_in_process_direct (test_fn)
 
def test_run_in_process_multiple_threads_parallel (test_fn)
 
def test_run_in_process_multiple_threads_sequential (test_fn)
 
def test_run_in_process_one_thread (test_fn)
 

Variables

 ALL_BASIC_TESTS
 
 ALL_BASIC_TESTS_PLUS_INTENTIONAL_DEADLOCK
 
 VARS_BEFORE_ALL_BASIC_TESTS
 

Function Documentation

◆ _intentional_deadlock()

def test_gil_scoped._intentional_deadlock ( )
private

Definition at line 143 of file test_gil_scoped.py.

◆ _run_in_process()

def test_gil_scoped._run_in_process (   target,
args,
**  kwargs 
)
private

Definition at line 150 of file test_gil_scoped.py.

◆ _run_in_threads()

def test_gil_scoped._run_in_threads (   test_fn,
  num_threads,
  parallel 
)
private

Definition at line 191 of file test_gil_scoped.py.

◆ test_all_basic_tests_completeness()

def test_gil_scoped.test_all_basic_tests_completeness ( )

Definition at line 133 of file test_gil_scoped.py.

◆ test_callback_pure_virtual_func()

def test_gil_scoped.test_callback_pure_virtual_func ( )

Definition at line 33 of file test_gil_scoped.py.

◆ test_callback_py_obj()

def test_gil_scoped.test_callback_py_obj ( )

Definition at line 20 of file test_gil_scoped.py.

◆ test_callback_std_func()

def test_gil_scoped.test_callback_std_func ( )

Definition at line 24 of file test_gil_scoped.py.

◆ test_callback_virtual_func()

def test_gil_scoped.test_callback_virtual_func ( )

Definition at line 28 of file test_gil_scoped.py.

◆ test_cross_module_gil_acquired()

def test_gil_scoped.test_cross_module_gil_acquired ( )
Makes sure that the GIL can be acquired by another module from a GIL-acquired state.

Definition at line 43 of file test_gil_scoped.py.

◆ test_cross_module_gil_inner_custom_acquired()

def test_gil_scoped.test_cross_module_gil_inner_custom_acquired ( )
Makes sure that the GIL can be acquired/acquired by another module
from a GIL-acquired state using custom locking logic.

Definition at line 54 of file test_gil_scoped.py.

◆ test_cross_module_gil_inner_custom_released()

def test_gil_scoped.test_cross_module_gil_inner_custom_released ( )
Makes sure that the GIL can be acquired/released by another module
from a GIL-released state using custom locking logic.

Definition at line 48 of file test_gil_scoped.py.

◆ test_cross_module_gil_inner_pybind11_acquired()

def test_gil_scoped.test_cross_module_gil_inner_pybind11_acquired ( )
Makes sure that the GIL can be acquired/acquired by another module
from a GIL-acquired state using pybind11 locking logic.

Definition at line 66 of file test_gil_scoped.py.

◆ test_cross_module_gil_inner_pybind11_released()

def test_gil_scoped.test_cross_module_gil_inner_pybind11_released ( )
Makes sure that the GIL can be acquired/released by another module
from a GIL-released state using pybind11 locking logic.

Definition at line 60 of file test_gil_scoped.py.

◆ test_cross_module_gil_nested_custom_acquired()

def test_gil_scoped.test_cross_module_gil_nested_custom_acquired ( )
Makes sure that the GIL can be nested acquired/acquired by another module
from a GIL-acquired state using custom locking logic.

Definition at line 78 of file test_gil_scoped.py.

◆ test_cross_module_gil_nested_custom_released()

def test_gil_scoped.test_cross_module_gil_nested_custom_released ( )
Makes sure that the GIL can be nested acquired/released by another module
from a GIL-released state using custom locking logic.

Definition at line 72 of file test_gil_scoped.py.

◆ test_cross_module_gil_nested_pybind11_acquired()

def test_gil_scoped.test_cross_module_gil_nested_pybind11_acquired ( )
Makes sure that the GIL can be nested acquired/acquired by another module
from a GIL-acquired state using pybind11 locking logic.

Definition at line 90 of file test_gil_scoped.py.

◆ test_cross_module_gil_nested_pybind11_released()

def test_gil_scoped.test_cross_module_gil_nested_pybind11_released ( )
Makes sure that the GIL can be nested acquired/released by another module
from a GIL-released state using pybind11 locking logic.

Definition at line 84 of file test_gil_scoped.py.

◆ test_cross_module_gil_released()

def test_gil_scoped.test_cross_module_gil_released ( )
Makes sure that the GIL can be acquired by another module from a GIL-released state.

Definition at line 38 of file test_gil_scoped.py.

◆ test_multi_acquire_release_cross_module()

def test_gil_scoped.test_multi_acquire_release_cross_module ( )

Definition at line 104 of file test_gil_scoped.py.

◆ test_nested_acquire()

def test_gil_scoped.test_nested_acquire ( )

Definition at line 100 of file test_gil_scoped.py.

◆ test_release_acquire()

def test_gil_scoped.test_release_acquire ( )

Definition at line 96 of file test_gil_scoped.py.

◆ test_run_in_process_direct()

def test_gil_scoped.test_run_in_process_direct (   test_fn)
Makes sure there is no GIL deadlock when using processes.

This test is for completion, but it was never an issue.

Definition at line 237 of file test_gil_scoped.py.

◆ test_run_in_process_multiple_threads_parallel()

def test_gil_scoped.test_run_in_process_multiple_threads_parallel (   test_fn)
Makes sure there is no GIL deadlock when running in a thread multiple times in parallel.

It runs in a separate process to be able to stop and assert if it deadlocks.

Definition at line 217 of file test_gil_scoped.py.

◆ test_run_in_process_multiple_threads_sequential()

def test_gil_scoped.test_run_in_process_multiple_threads_sequential (   test_fn)
Makes sure there is no GIL deadlock when running in a thread multiple times sequentially.

It runs in a separate process to be able to stop and assert if it deadlocks.

Definition at line 227 of file test_gil_scoped.py.

◆ test_run_in_process_one_thread()

def test_gil_scoped.test_run_in_process_one_thread (   test_fn)
Makes sure there is no GIL deadlock when running in a thread.

It runs in a separate process to be able to stop and assert if it deadlocks.

Definition at line 207 of file test_gil_scoped.py.

Variable Documentation

◆ ALL_BASIC_TESTS

test_gil_scoped.ALL_BASIC_TESTS

Definition at line 112 of file test_gil_scoped.py.

◆ ALL_BASIC_TESTS_PLUS_INTENTIONAL_DEADLOCK

test_gil_scoped.ALL_BASIC_TESTS_PLUS_INTENTIONAL_DEADLOCK

Definition at line 147 of file test_gil_scoped.py.

◆ VARS_BEFORE_ALL_BASIC_TESTS

test_gil_scoped.VARS_BEFORE_ALL_BASIC_TESTS

Definition at line 111 of file test_gil_scoped.py.



gtsam
Author(s):
autogenerated on Tue Jun 25 2024 03:14:38