flashAttention property

bool? get flashAttention

whether to use flash attention

Implementation

bool? get flashAttention => _flashAttention;
set flashAttention (bool? value)

Implementation

set flashAttention(bool? value) {
  _flashAttention = value;
  notifyListeners();
}