ak.materialize -------------- .. py:module: ak.materialize Defined in `awkward.operations.ak_materialize <https://github.com/scikit-hep/awkward/blob/36da52cfa8846355c390beb6555eac1d31c27c26/src/awkward/operations/ak_materialize.py>`__ on `line 12 <https://github.com/scikit-hep/awkward/blob/36da52cfa8846355c390beb6555eac1d31c27c26/src/awkward/operations/ak_materialize.py#L12>`__. .. py:function:: ak.materialize(array, highlevel=True, behavior=None, attrs=None) :param array: array_like An array with possible virtual buffers materialize. :param highlevel: If True, return an :py:obj:`ak.Array`; otherwise, return a low-level :py:obj:`ak.contents.Content` subclass. :type highlevel: bool, default is True :param behavior: Custom :py:obj:`ak.behavior` for the output array, if high-level. :type behavior: None or dict :param attrs: Custom attributes for the output array, if high-level. :type attrs: None or dict Traverses the input array and materializes any virtual buffers. The buffers of the returned array are no longer ``VirtualArray`` objects. They will become either ``numpy.ndarray`` or ``cupy.ndarray`` objects depending on the array's backend. Possible inputs that will be traversed are instances of :py:obj:`ak.Array`, :py:obj:`ak.Record`, :py:obj:`ak.contents.Content`, and :py:obj:`ak.record.Record`. All other types of inputs will be returned as is.