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 145 of file test_gil_scoped.py.

◆ _run_in_process()

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

Definition at line 152 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 193 of file test_gil_scoped.py.

◆ test_all_basic_tests_completeness()

def test_gil_scoped.test_all_basic_tests_completeness ( )

Definition at line 135 of file test_gil_scoped.py.

◆ test_callback_pure_virtual_func()

def test_gil_scoped.test_callback_pure_virtual_func ( )

Definition at line 35 of file test_gil_scoped.py.

◆ test_callback_py_obj()

def test_gil_scoped.test_callback_py_obj ( )

Definition at line 22 of file test_gil_scoped.py.

◆ test_callback_std_func()

def test_gil_scoped.test_callback_std_func ( )

Definition at line 26 of file test_gil_scoped.py.

◆ test_callback_virtual_func()

def test_gil_scoped.test_callback_virtual_func ( )

Definition at line 30 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 45 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 56 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 50 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 68 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 62 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 80 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 74 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 92 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 86 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 40 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 106 of file test_gil_scoped.py.

◆ test_nested_acquire()

def test_gil_scoped.test_nested_acquire ( )

Definition at line 102 of file test_gil_scoped.py.

◆ test_release_acquire()

def test_gil_scoped.test_release_acquire ( )

Definition at line 98 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 239 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 219 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 229 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 209 of file test_gil_scoped.py.

Variable Documentation

◆ ALL_BASIC_TESTS

test_gil_scoped.ALL_BASIC_TESTS

Definition at line 114 of file test_gil_scoped.py.

◆ ALL_BASIC_TESTS_PLUS_INTENTIONAL_DEADLOCK

test_gil_scoped.ALL_BASIC_TESTS_PLUS_INTENTIONAL_DEADLOCK

Definition at line 149 of file test_gil_scoped.py.

◆ VARS_BEFORE_ALL_BASIC_TESTS

test_gil_scoped.VARS_BEFORE_ALL_BASIC_TESTS

Definition at line 113 of file test_gil_scoped.py.



gtsam
Author(s):
autogenerated on Fri Nov 1 2024 03:53:19