Skip to content

Instantly share code, notes, and snippets.

@GaelVaroquaux
Created October 17, 2012 10:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GaelVaroquaux/3904873 to your computer and use it in GitHub Desktop.
Save GaelVaroquaux/3904873 to your computer and use it in GitHub Desktop.
Wrapping CPP map container to a dict-like Python object
"""
Uses C++ map containers for fast dict-like behavior with keys being
integers, and values float.
"""
# Author: Gael Varoquaux
# License: BSD
# XXX: this needs Cython 17.1 or later. Elsewhere you will get a C++ compilation error.
import numpy as np
# Import the C-level symbols of numpy
cimport numpy as np
# Numpy must be initialized. When using numpy from C or Cython you must
# _always_ do that, or you will have segfaults
np.import_array()
DTYPE = np.float64
ctypedef np.float64_t DTYPE_t
ITYPE = np.int32
ctypedef np.int32_t ITYPE_t
from libcpp.map cimport map as cpp_map
###############################################################################
# An object to be used in Python
cdef class IntFloatDict:
cdef cpp_map[ITYPE_t, DTYPE_t] my_map
def __init__(self, np.ndarray[ITYPE_t, ndim=1] keys,
np.ndarray[DTYPE_t, ndim=1] values):
cdef cpp_map[ITYPE_t,DTYPE_t] my_map
cdef int i
cdef int size = values.size
# Should check that sizes for keys and values are equal, and
# after should boundcheck(False)
for i in range(size):
my_map[keys[i]] = values[i]
self.my_map = my_map
def __len__(self):
return self.my_map.size()
def __getitem__(self, int key):
return self.my_map[key]
def __setitem__(self, int key, float value):
self.cpp_map[key] = value
# XXX: Need a __dealloc__ to clear self.cpp_map
@larsmans
Copy link

Note that self.my_map = my_map copies the entire map. If you make my_map a reference and skip the assignment, it should work without the copy.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment