Merge branch 'dev0.8.0' of github.com:fastnlp/fastNLP into dev0.8.0

This commit is contained in:
MorningForest 2022-05-10 22:31:04 +08:00
commit 2baedee74c
2 changed files with 9 additions and 1 deletions

View File

@ -24,4 +24,4 @@ def print(*args, sep=' ', end='\n', file=None, flush=False):
line = sep.join(map(str, args))
if logger.isEnabledFor(INFO):
kwargs = logger._add_rank_info({})
logger._log(INFO, line, **kwargs)
logger._log(INFO, line, None, **kwargs)

View File

@ -0,0 +1,8 @@
from fastNLP import print
def test_print():
print("a")
print([1, 2, 3])
print([1,2,3], [4,5,6], 'a')
print(print)