Loaders

Module: polygraphy.backend.base

class BaseLoader[source]

Bases: object

Base class for Polygraphy Loaders.

call_impl(*args, **kwargs)[source]

Implementation for __call__. Derived classes should implement this method rather than __call__.

__call__(*args, **kwargs)[source]

Invokes the loader by forwarding arguments to call_impl.

Note: call_impl should not be called directly - use this function instead.