Update the experimental vector shared memory util functions (#339)

This commit is contained in:
Mark Towers
2023-02-20 16:02:12 +00:00
committed by GitHub
parent 31277a8f5b
commit b3685f51a2
4 changed files with 173 additions and 186 deletions

View File

@@ -111,3 +111,10 @@ TESTING_COMPOSITE_SPACES_IDS = [f"{space}" for space in TESTING_COMPOSITE_SPACES
TESTING_SPACES: List[Space] = TESTING_FUNDAMENTAL_SPACES + TESTING_COMPOSITE_SPACES
TESTING_SPACES_IDS = TESTING_FUNDAMENTAL_SPACES_IDS + TESTING_COMPOSITE_SPACES_IDS
CUSTOM_SPACES = [
Space(),
Tuple([Space(), Space(), Space()]),
Dict(a=Space(), b=Space()),
]
CUSTOM_SPACES_IDS = [f"{space}" for space in CUSTOM_SPACES]