Skip to content

Commit

Permalink
add misc missing scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrady-tt committed Jan 28, 2025
1 parent e360117 commit 8e39ea6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 63 deletions.
Empty file added tt_npe/scripts/__init__.py
Empty file.
12 changes: 12 additions & 0 deletions tt_npe/scripts/add_license.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
read -r -d '' LICTEXT << 'END'
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: © 2025 Tenstorrent AI ULC
END

for f in `find -name '*.*py'`; do
printf "$LICTEXT\n\n" > tmp
cat $f >> tmp
echo $f
#diff tmp $f
mv tmp $f
done
63 changes: 0 additions & 63 deletions tt_npe/scripts/regtest.py

This file was deleted.

0 comments on commit 8e39ea6

Please sign in to comment.