Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions backends/qualcomm/debugger/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ def draw(self):
cleanup=not self.dot_string,
)
source_file = os.path.join(temp_directory, f"{self.filename}.svg")
destination_file = os.path.join(".", f"{self.filename}.svg")
destination_file = os.path.join(self.directory, f"{self.filename}.svg")
shutil.move(source_file, destination_file)
if self.dot_string:
dot_file = os.path.join(temp_directory, f"{self.filename}")
dot_dest_file = os.path.join(".", f"{self.filename}.dot")
dot_dest_file = os.path.join(self.directory, f"{self.filename}.dot")
shutil.move(dot_file, dot_dest_file)


Expand Down
1 change: 1 addition & 0 deletions examples/qualcomm/oss_scripts/llama/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ class Smollm3_3B(LLMModelConfig):
ptq = QuantDtype.use_16a4w_block
group_size = 32
masked_softmax = True
seq_mse_candidates = 0
r1 = False
r2 = False
r3 = False
Expand Down
Loading