Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions llama/spotbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ SPDX-License-Identifier: MIT

<!--
ModelParameters intentionally types each enum-valued fluent setter
to its specific enum (CacheType, MiroStat, NumaStrategy,
ReasoningFormat, RopeScalingType, GpuSplitMode, TensorReadLazyMode)
to its specific enum (CacheType, FlashAttn, LazyMode, MiroStat,
NumaStrategy, ReasoningFormat, RopeScalingType, GpuSplitMode)
rather than the shared CliArg interface that those enums all
implement. The narrow type is the API contract:

Expand All @@ -80,12 +80,13 @@ SPDX-License-Identifier: MIT
<Or>
<Method name="setCacheTypeK"/>
<Method name="setCacheTypeV"/>
<Method name="setFlashAttn"/>
<Method name="setLazyMode"/>
<Method name="setMirostat"/>
<Method name="setNuma"/>
<Method name="setReasoningFormat"/>
<Method name="setRopeScaling"/>
<Method name="setSplitMode"/>
<Method name="setTensorReadLazy"/>
</Or>
</Match>

Expand Down
Loading