Skip to content

Commit

Permalink
add_script,test=document_fix (#61057)
Browse files Browse the repository at this point in the history
  • Loading branch information
Galaxy1458 committed Jan 23, 2024
1 parent bc4bc09 commit 7e5e213
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions paddle/scripts/get_target_size.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import subprocess
import sys


class HandleTarget:
def __init__(self) -> None:
argv = sys.argv
len_ = len(argv)
fromPath = './' if len_ <= 1 else argv[1]
cmd = f"find {fromPath} -name '*.o' -not -path './third_party/*' | xargs du -sch > log"
subprocess.run(cmd, shell=True)

def calcuSize(self, item):
size = float(item[:-1])
res = size * 1024 if item.find('G') >= 0 else size
return size / 1024 if item.find('K') >= 0 else res

def getSize(self):
ctx = self.getDatas()
sum = 0
for item in ctx:
if item.find('total') >= 0:
item = item.split('\t')[0]
sum += self.calcuSize(item)

print(f"Total size is {sum} M (without third_party)")

def getDatas(self):
with open('log', 'r') as file:
ctx = file.read()
ctx = ctx.split('\n')
return ctx


if __name__ == '__main__':
handler = HandleTarget()
handler.getSize()

0 comments on commit 7e5e213

Please sign in to comment.