"tests/pytorch/attention/test_attention.py" did not exist on "e762592ebd2ec8b5a73d5a04912a3ba3cf3f3792"
format_py_files.sh 248 Bytes
Newer Older
Przemek Tredak's avatar
Przemek Tredak committed
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# See LICENSE for license information.

python_files=`find transformer_engine tests setup.py examples -name '*.py'`
for f in $python_files
do
  black $f
done