map_fermion_action_generators¶
- map_fermion_action_generators(operator, map_action, identity, compose=None)¶
Map a
FermionOperatorto another operator type.This is a generic function to aid in implementing new mappers for
FermionOperatorinstances. At its core, it simply iterates over the terms of the operator, mapping each encounteredFermionActionwith the user-providedmap_actionfunction. In combination with the user-providedidentitygenerator, this allows mapping to arbitrary output types.Note
The output type
Tmust support multiplication by a scalar via__mul__. Ifcompose=Noneit must also support composition of two instances via__and__.SparseObservabledoes not, which is why the example below namescompose()explicitly; a type with an__and__(such asSparsePauliOp) can rely on the default.Note
The mapping written out below is a minimal illustration of this function rather than a replacement for
fermion_jordan_wigner(), which is parallelized and bounds the memory it uses while assembling the result.>>> from qiskit_fermions.mappers import map_fermion_action_generators >>> from qiskit_fermions.operators import FermionAction, FermionOperator, ann, cre >>> from qiskit.quantum_info import SparseObservable >>> >>> def jordan_wigner(action: FermionAction) -> SparseObservable: ... act, idx = action ... qubits = list(range(idx + 1)) ... return SparseObservable.from_sparse_list( ... [ ... ("Z" * idx + "X", qubits, 0.5), ... ("Z" * idx + "Y", qubits, -0.5j if act else 0.5j), ... ], ... num_qubits=num_qubits, ... ) >>> >>> num_qubits = 2 >>> def identity() -> SparseObservable: ... return SparseObservable.identity(num_qubits) >>> >>> op = FermionOperator.from_dict({(cre(0), ann(1)): 2.0}) >>> qop = map_fermion_action_generators( ... op, jordan_wigner, identity, compose=SparseObservable.compose ... ) >>> print(sorted(qop.simplify().to_sparse_list())) [('XX', [0, 1], (0.5+0j)), ('XY', [0, 1], 0.5j), ('YX', [0, 1], -0.5j), ('YY', [0, 1], (0.5+0j))]
- Parameters:
operator (FermionOperator) – the operator to be mapped.
map_action (Callable[[tuple[bool, int]], T]) – the function to map a single
FermionActionto the desired output type.identity (Callable[[], T]) – the function to generate the multiplicative identity instance of the output type.
compose (Callable[[T, T], T] | None) – an optional function to implement the compositiion logic of two output type instances. If this is not provided, it will default to using
operator.and_().
- Returns:
The mapped operator.
- Return type:
T