Source code for xma.xtuner.parameter

# **************************************************
# Copyright (c) 2025, Mayank Mishra
# **************************************************

from typing import Generic, TypeVar


T = TypeVar("T")


[docs] class XTuneParameter(Generic[T]): """Marker annotation for XTune parameters."""