- 21 4月, 2023 2 次提交
-
-
由 zhouweiwei2014 提交于
-
由 Zhang Zheng 提交于
* [AMP OP&Test] Add check_dtype for some API (part 2) * fix ci * fix ci
-
- 19 4月, 2023 1 次提交
-
-
由 Zhang Zheng 提交于
* [AMP OP&Test] Add check_dtype for some API (part 1) * fix
-
- 14 4月, 2023 1 次提交
-
-
由 Yiqun Liu 提交于
* Unify the static amp codes of fp16 and bf16. * Polish apis and add unittest. * Add operator stats collecting tools for program. * Add the check of number of bloat16 operators in unittest. * Add warning for operator not supported for amp. * Add testing of BF16 O1 and O2.
-
- 12 4月, 2023 1 次提交
-
-
由 Aurelius84 提交于
-
- 11 4月, 2023 1 次提交
-
-
由 cyberslack_lee 提交于
-
- 06 4月, 2023 1 次提交
-
-
由 Kim Yann 提交于
* rem is_compiled_with_npu * rem nup related code * make lint happy * rem test * remove some tests * Update grad_scaler.py * fix an error
-
- 31 3月, 2023 1 次提交
-
-
由 张春乔 提交于
* autofix Co-authored-by: NLiyulingyue <83450930+Liyulingyue@users.noreply.github.com> * revert changes in python/paddle/distributed/fleet/utils/hybrid_parallel_util.py * empty commit, trigger ci * fix test_slice --------- Co-authored-by: NSigureMo <sigure.qaq@gmail.com>
-
- 30 3月, 2023 2 次提交
-
-
由 Roc 提交于
-
由 wanghuancoder 提交于
* delete old dygraph op test
-
- 28 3月, 2023 1 次提交
-
-
由 houj04 提交于
* fix int8 support for full kernel * fix ut.
-
- 20 3月, 2023 1 次提交
-
-
由 GGBond8488 提交于
* migrate fill_constant to paddle.tensor * move fill_constant to paddle.tensor and repalce the reference * add missing fill_constant replacement * fix typro * remove unused import fill_constant * fix zeros import error * fix circle import * fix layers.zeros * fix unitest * fix unitests * fix unitest * use paddle.full replace fill_constant in samplecode * fix sample code * recovery xpu test * recovery xpu test * fix circle import * fix utils import error * fix utils error * fix circle import * redo * fix circle import * fix prim fill constant import * fix type error * fix increase error * fix test error * fix fill_constant
-
- 17 3月, 2023 1 次提交
-
-
由 PommesPeter 提交于
* added paddle.polar to paddle * added paddle.polar unitest * failed to use pytorch for evaluating results, and changed with numpy implementation * updated code style * updated __init__.py * updated code style * fixed unitest code * lkh test polar * polar add * fixed errors and optimized code * fixed error * optimized polor api * updated code style * updated code style --------- Co-authored-by: Ndiadestiny <1247889154@qq.com>
-
- 14 3月, 2023 1 次提交
-
-
由 Li-fAngyU 提交于
* update empty api to support compex dtype at static mode * code style * code style * 补充注释里的类型描述
-
- 09 3月, 2023 2 次提交
-
-
由 yangjianfengo1 提交于
* AMP arange & Test * fix arange bfloat16 dtype * update for review * update for review2 * fix tile * update * fix ci * r * f * fix windows ci * update bfloat data * fix bloat16 input * add print * Update test_where_op.py * update kernel * del repeat * update review
-
由 zqw_1997 提交于
* move fluid.utils to paddle.utils.layers_utils * fix error * delete original fluid layers utils * remove import and old utils * remove more old utils import * change import path of fill_constant in the layers_utils.py * fix mistake * fix error * expose in __init__.py * for comment * when change the ref of func is_sequence, it should change to the root of is_sequence instead * for codecheck
-
- 01 3月, 2023 2 次提交
-
-
由 Yichen Zhang 提交于
* implement composite full_like and simple unit test * implement op tests for composite full_like op * some modification as reviewers suggested add cinn op test to CMakeLists.txt fix code style * fix code style * modify input args of prim fill_any_like op * resolve conflicts * resolve conflicts * modify python api and unit tests as suggested * resolve conflicts * resolve conflicts * use framework.dtype to convert dtype in Op test
-
由 LoneRanger 提交于
-
- 27 2月, 2023 1 次提交
-
-
由 陈沧夜 提交于
-
- 16 2月, 2023 2 次提交
-
-
由 Chen Weihang 提交于
* add logspace yaml * update by comments * resolve test framework conflicct
-
由 zyfncg 提交于
-
- 01 2月, 2023 2 次提交
-
-
由 zqw_1997 提交于
remove fluid.initializer.UniformInitializer, ConstantInitializer, NormalInitializer, TruncatedNormalInitializer, XavierInitializer, BilinearInitializer, MSRAInitializer, NumpyArrayInitializer and calculate_gain.. (#49498) * move UniformInitializer and ConstantInitializer * more modify * circular import resolved * another circular import resolved? * more circular import 2 * circular import 3 * change import paddle in metric.py * BuildStrategy import from fluid * modify the framework import path in common.py * change rnn.py import, from static to original framework * change import static in the nn folder * default_main_program should import from common_ops_import * add import paddle in param_attr.py * use core not paddle module for using VarDesc * another old uniform * mistake that use Uniform instead of UniformInitializer * modify UniformInitializer doc * move fluid.NormalInitializer to nn.initializer.NormalInitializer * remove import of Normal in fluid.layers.nn.py * remove more import of old Normal * remove more import of old Normal * sample code modify and tests modify import * is_listen_failed passing arg should be log file * problem solved * a mistake solved * comments resoleved and remove paddle.fluid.initializer.TruncatedNormalInitializer * remove paddle.fluid.initializer.XavierInitializer and paddle.fluid.initializer.MSRAInitializer * remove paddle.fluid.initializer.BilinearInitializer NumpyArrayInitializer and set_global_initializer * change fluid to static * change static to fluid to avoid circular import in distributed_strategy.py * fix example code and test_initializer * ValueType * sample code fix * change set_global_initializer back to fluid * put paddle.static.BuildStrategy.ReduceStrategy into the fuction to avoid circular import * remove calculate_gain, delete BilinearInitializer and revert set_global_initializer * change the time of using UniformInitializer, ConstantInitializer, NormalInitializer, TruncatedNormalInitializer, XavierInitializer, MSRAInitializer, NumpyArrayInitializer as few as possible * fix argument incampatible * fix more arg incompatible * fix test_prelu_op_xpu.py Constant * fix inaccurate doc * more doc fix: default value
-
由 PuQing 提交于
* fix numpyScaler2Tensor type error * fix to_tensor docs, test=document_fix
-
- 10 1月, 2023 1 次提交
-
-
由 Weilong Wu 提交于
* [Eager] polish several ops * rm useless code
-
- 05 1月, 2023 1 次提交
-
-
由 Weilong Wu 提交于
* [Eager] optimize same python api logic * optimize full api * optimize logic * optimize logic
-
- 27 12月, 2022 1 次提交
-
-
由 wanghuancoder 提交于
* delete _in_legacy_dygraph
-
- 23 12月, 2022 1 次提交
-
-
由 LoneRanger 提交于
* 修改linspace参数"stop"的介绍 * 更新了conv2d_transpose英文文档中 1.公式异常 2.参数说明异常 3.padding=SAME和VALID的公式说明; test=docs_preview * 解决了 1.英文版Note中的api_fluid_layers_conv2d的链接失效, 2. 英文版参数中的padding_start的参数错误 3. 参数中bias_attr和param_attr的链接失效 4. 参数缺少optional * 更新了paddle.static.auc的英文文档的Return描述以及函数的参数 * Update python/paddle/tensor/creation.py Co-authored-by: NLigoml <39876205+Ligoml@users.noreply.github.com> * 更新了shard_index的ignore_value描述 * 修改了英文文档的paddle.static.nn.conv3d_transpose的公式介绍 * add py_func COPY-FROM label; test=document_fix * Update python/paddle/tensor/manipulation.py Co-authored-by: NLigoml <39876205+Ligoml@users.noreply.github.com> * formula; test=document_fix * formula; test=document_fix * formula; test=document_fix Co-authored-by: NLigoml <39876205+Ligoml@users.noreply.github.com>
-
- 09 12月, 2022 1 次提交
-
-
由 cyber-pioneer 提交于
-
- 07 12月, 2022 1 次提交
-
-
由 傅剑寒 提交于
* [Zero-Dim] Support 0D for paddle.diagflat
-
- 05 12月, 2022 1 次提交
-
-
由 cyber-pioneer 提交于
-
- 02 12月, 2022 2 次提交
-
-
由 cyber-pioneer 提交于
move paddle.fluid.layers.tensor.create_parameter to paddle.tensor.creation.create_parameter (#48579)
-
由 Infinity_lee 提交于
* fix boardcasting superlink * Update bitwise_op.cc * fix typo errors(from 48186) * Update python/paddle/distribution/uniform.py Co-authored-by: NLigoml <39876205+Ligoml@users.noreply.github.com> * Update math.py * Update math.py * refix * Update logic.py * BaseTransform api doc; test=docs_preview * Update python/paddle/vision/transforms/transforms.py * for text block; test=docs_preview * Update transforms.py Co-authored-by: NLigoml <39876205+Ligoml@users.noreply.github.com>
-
- 28 11月, 2022 1 次提交
-
-
由 Nyakku Shigure 提交于
-
- 22 11月, 2022 1 次提交
-
-
由 ustiniankw 提交于
* fix_docx_stanh * fix einsum api en docs issue * fix model api en docs issue * for codestyle * fix_einsum.py_einsum, test=document_fix * fix_model.py_Model, test=ducument_fix * fix_creation.py_meshgrid, test=document_fix * fix_linalg.py_slogdet, test=document_fix * fix_loss.py_SoftMarginLoss_CrossEntropyLoss_NLLLoss_BCELoss, test=document_fix * norm.py_SyncBatchNorm, test=document-fix * norm.py_SyncBatchNorm, test=document_fix * norm.py_SyncBatchNorm, test=document_fix * list18-30, test=document_fix * refix_list1-15, test=document_fix * deletefiles, test=document_fix * fixedapi_pre-commit, test=document_fix * fix_list31-45, test=document_fix * list111, test=document_fix * some_fix, test=document_fix * some_fix, test=document_fix * somefix, test=document_fix * somefix, test=document_fix * refix, test=document_fix * refix, test=document_fix * refix, test=document_fix * refix, test=document_fix * rerfix, test=document_fix Co-authored-by: Ligoml <limengliu@tiaozhan.com>
-
- 17 11月, 2022 1 次提交
-
-
由 YuanRisheng 提交于
* standard api * fix xpu bugs
-
- 14 11月, 2022 1 次提交
-
-
由 zhouweiwei2014 提交于
* [Zero-Dim] support input 0D Tensor as scalar attribute for some api * fix doc
-
- 09 11月, 2022 1 次提交
-
-
由 超级码牛 提交于
* fix paddle.get_default_dtype Chinese and English return values are inconsistent * fix paddle.matmul 文档评估 #4407 把函数的输出改成正确的 * fix paddle.std文档评估 #4370 增加了一个unbiased=False的代码示例,没有增加numpy,怕引起误会。 * fix paddle.load文档测评 #4455 只把代码拆分了5段 * try * try * try * Update io.py * Update io.py * Update creation.py * Update creation.py * [Docs]add name description * [Docs]fix broadcasting issue Co-authored-by: NLigoml <39876205+Ligoml@users.noreply.github.com>
-
- 01 11月, 2022 1 次提交
-
-
由 YuanRisheng 提交于
* standard_api * add hardtanh
-
- 23 10月, 2022 1 次提交
-
-
由 Nyakku Shigure 提交于
* update config * re-blacken python code * temporarily disable date and diff_py_file * skip a format
-
- 12 10月, 2022 1 次提交
-
-
由 Shuangchi He 提交于
[CodeStyle][F401] remove unused imports in python_paddle/nn_tensor_reader_tests_distributed_distribution_dataset_utils. (#46721)
-