Skip to content

Commit 94e73b0

Browse files
committed
add more names
Signed-off-by: Kyle Sayers <kylesayrs@gmail.com>
1 parent 49e32c5 commit 94e73b0

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/llmcompressor/args/dataset_arguments.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,16 @@ class DatasetArguments(CustomDatasetArguments):
181181
},
182182
)
183183
tracing_ignore: List[str] = field(
184-
default_factory=lambda: ["_update_causal_mask", "create_causal_mask"],
184+
default_factory=lambda: [
185+
"_update_causal_mask",
186+
"create_causal_mask",
187+
"make_causal_mask",
188+
"get_causal_mask",
189+
"mask_function",
190+
"_prepare_4d_causal_attention_mask",
191+
"_prepare_fsmt_decoder_inputs",
192+
"_prepare_4d_causal_attention_mask_with_cache_position",
193+
],
185194
metadata={
186195
"help": "List of functions to ignore during tracing, either "
187196
"{module}.{method_name} or {function_name}"

0 commit comments

Comments
 (0)