Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge paddle develop #2

Merged
merged 528 commits into from
Apr 12, 2021
Merged

merge paddle develop #2

merged 528 commits into from
Apr 12, 2021
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Mar 2, 2021

  1. Add attrs deformable_groups for deformable_conv API (#31335)

    * add attrs deformable_groups
    wangna11BD authored Mar 2, 2021
    Configuration menu
    Copy the full SHA
    1cbccfa View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2021

  1. Configuration menu
    Copy the full SHA
    946dbda View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13e4280 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c1bc223 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6626c6a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e312a1f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    32211fe View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    db50fb6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3b9db17 View commit details
    Browse the repository at this point in the history
  9. [ROCM] update fluid operators for rocm (part3), test=develop (#31213)

    * [ROCM] update fluid operators for rocm (part3), test=develop
    
    * fix clang format error, test=develop
    qili93 authored Mar 3, 2021
    Configuration menu
    Copy the full SHA
    84639b6 View commit details
    Browse the repository at this point in the history
  10. [ROCM] update fluid elementwise op for rocm (part10), test=develop (#…

    …31361)
    
    * [ROCM] update fluid elementwise op for rocm (part10), test=develop
    
    * update, test=develop
    
    * address review comments, test=develop
    qili93 authored Mar 3, 2021
    Configuration menu
    Copy the full SHA
    7cdf6ea View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2021

  1. Configuration menu
    Copy the full SHA
    5b4f8aa View commit details
    Browse the repository at this point in the history
  2. [Dy2stat] Fix Read-Only Attribute as while_loop Output (#31415)

    Fix Read-Only Attribute as while_loop Output:
    
    Usually, our convert_while_loop will be like:
    ```
        [a, b, c] = paddle.jit.dy2static.convert_while_loop(
                condition_name, body_name, [a, b, c])
    ```
    where a, b, c are in loop_var_names.
    
    However, if loop_var_names contains property such as foo.x, we cannot
    assign the attribute as output of convert_while_loop because Python
    property is a kind of read-only attribute. To handle the case, we replace
    the attributes which are output of convert_while_loop with generated
    variables, then if we know the attribute is not read-only at runtime, we
    assign the attribute. The created statements are like:
    ```
        [a, b, __attribute_variable_1] = paddle.jit.dy2static.convert_while_loop(
                condition_name, body_name, [a, b, foo.x])
        if not isinstance(getattr(type(foo), x, None), property): foo.x = __attribute_variable_1
    ```
    zhhsplendid authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    6bf02a1 View commit details
    Browse the repository at this point in the history
  3. Fix comment (#31424)

    Fix wrong code comment
    zhhsplendid authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    c40b98e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0fff930 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4d6d2db View commit details
    Browse the repository at this point in the history
  6. improve performance of depthwise_conv2d (#31099)

    * improve performance of depthwise_conv2d
    
    * add unittest
    zhangting2020 authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    dcce54e View commit details
    Browse the repository at this point in the history
  7. fix modified_retry_method_only_win (#31404)

    * fix modified_retry_method_only_win
    
    * fix bug
    
    * fix retry bug on windows
    XieYunshen authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    3a8ef10 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7d95e59 View commit details
    Browse the repository at this point in the history
  9. prepare remove grad script and update PADDLE_CI_INFERENCE pipeline (#…

    …31149)
    
    prepare remove grad op and kernel script.
    update Paddle_CI_Inference pipeline.
    jiweibo authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    c9a7bfe View commit details
    Browse the repository at this point in the history
  10. fix python full coverage decrease issue (#31429)

    * fix python full coverage decrease issue
    
    * fix
    XieYunshen authored Mar 4, 2021
    Configuration menu
    Copy the full SHA
    62289fc View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    522c91e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    4d647ec View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2021

  1. [Kunlun]Multi xpu dygraph performance optimization , add distributed.…

    …spawn support for multi xpu and some bug-fixes (#31130)
    vslyu authored Mar 5, 2021
    Configuration menu
    Copy the full SHA
    9ebf05b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1321c47 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    30717a6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8491ae9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    bc7632b View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2021

  1. Configuration menu
    Copy the full SHA
    ffdd5b7 View commit details
    Browse the repository at this point in the history
  2. [CustomOp] Automatically specify PADDLE_WITH_MKLDNN & Remove Interpre…

    …ter argument (#31391)
    
    * auto specify PADDLE_WITH_MKLDNN and remove Interpretper
    
    * remove print
    
    * fix check abi
    
    * fix windows
    
    * fix compile flags
    Aurelius84 authored Mar 8, 2021
    Configuration menu
    Copy the full SHA
    fadabbe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f937796 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    133a914 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5f62132 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2021

  1. Configuration menu
    Copy the full SHA
    39a5424 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b85c8e0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e03e467 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50af0c2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    43d6abf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    634a12b View commit details
    Browse the repository at this point in the history
  7. Prec on windows exclude check_added_ut (#31372)

    * add precision test for windows ci exclude check_added_ut
    
    * fix error
    
    * added PRECISION_TEST parameters
    
    * fix format error
    XieYunshen authored Mar 9, 2021
    Configuration menu
    Copy the full SHA
    390cebe View commit details
    Browse the repository at this point in the history
  8. [oneDNN] bumpup onednn 2.2 fixup version (#31473)

    * - introduced fix onednn 2.2 version
    
    * - compilation fix
    jczaja authored Mar 9, 2021
    Configuration menu
    Copy the full SHA
    23d96cf View commit details
    Browse the repository at this point in the history
  9. Prec on mac (#31382)

    * add precision on mac
    
    * added judge
    
    * match file_ut.json on mac
    
    * fix code format error
    
    * fix code format error
    
    * fix error caused by length of ut_lists exceeds the limit
    
    * fix format error,notest,test=cpu
    
    * fix code format error
    
    * add windows judge on get_pr_ut
    XieYunshen authored Mar 9, 2021
    Configuration menu
    Copy the full SHA
    0b3c229 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2021

  1. Configuration menu
    Copy the full SHA
    45c7d90 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f57739b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    416e47e View commit details
    Browse the repository at this point in the history
  4. Bugfix rocm (#31490)

    * bugfix for test_cholesky_op
    
    * bugfix for test_compare_op
    
    * bugfix for lookup_table_op
    
    * bugfix for affine_channel_op
    windstamp authored Mar 10, 2021
    Configuration menu
    Copy the full SHA
    910f377 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c8ae837 View commit details
    Browse the repository at this point in the history
  6. remove the send/recv of tensor size (#31460)

    * remove the send/recv of tensor size, but users have to specify the shape of the received var explicitly.
    lilong12 authored Mar 10, 2021
    Configuration menu
    Copy the full SHA
    0205e9f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    83a2fb1 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2021

  1. [save/load] Fix bug with input_spec=dict[InputSpec] in jit.save (#31517)

    * fix bug with jit.save
    
    * refine code
    Aurelius84 authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    f3959e9 View commit details
    Browse the repository at this point in the history
  2. add softmax_switch for softmax_with_cross_entropy_op, test=develop (#…

    …31428)
    
    * add softmax_switch for softmax_with_cross_entropy_op, test=develop
    
    * delete using EigenMatrix in softmax_with_cross_entropy_op.h, test=develop
    
    * add REGISTER_OP_VERSION for softmax_switch attr of softmax_with_cross_entropy_op, test=develop
    chajchaj authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    6148b87 View commit details
    Browse the repository at this point in the history
  3. solve bug in heter mode (#31531)

    * heter bug
    
    * format
    
    * format
    Thunderbrook authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    3789a69 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9ed6c89 View commit details
    Browse the repository at this point in the history
  5. [Bug fix] Different machine generate different binary file, remove md…

    …5 check (#31482)
    
    * Different machine generate different binary file, remove md5 check
    
    * remove unnecessary functions
    lidanqing-intel authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    0f1e7e3 View commit details
    Browse the repository at this point in the history
  6. Update comments for API RandomResizedCrop (#31539)

    * update comments
    LielinJiang authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    ac493f2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    49c3d2a View commit details
    Browse the repository at this point in the history
  8. [Dy2stat]Fix bug with static_convert_var_shape in locals scope (#31556)

    * Fix bug with static_convert_var_shape
    
    * replace dot with dash
    Aurelius84 authored Mar 11, 2021
    Configuration menu
    Copy the full SHA
    def27bc View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2021

  1. [CustomOp] Support duplicable op input and output (#31535)

    * support duplicable op inout
    
    * add costom concat op test
    chenwhql authored Mar 12, 2021
    Configuration menu
    Copy the full SHA
    95cceb2 View commit details
    Browse the repository at this point in the history
  2. help timeout ut debug (#31500)

    * To help timeout_ut debug
    
    * To help timeout_ut debug
    
    * added show information
    XieYunshen authored Mar 12, 2021
    Configuration menu
    Copy the full SHA
    f302bb4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3d5aa9d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    99dcd66 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    da9dda5 View commit details
    Browse the repository at this point in the history
  6. Support loading parameters from checkpoint to save quantized model (#…

    …31419)
    
    * Support loading parameters from checkpoint to save quantized model
    
    * Fix the unittest test_moving_average_abs_max_scale_op
    
    * Add unittest of save_quantized_model from checkpoint
    
    * Add comments to explain the function
    gfwm2013 authored Mar 12, 2021
    Configuration menu
    Copy the full SHA
    ef0dd3e View commit details
    Browse the repository at this point in the history
  7. Trt elementwise plugin serialize (#31587)

    * add serialize unittest
    
    * fix element_op trt plugin serialize bug
    shangzhizhou authored Mar 12, 2021
    Configuration menu
    Copy the full SHA
    50ac7db View commit details
    Browse the repository at this point in the history
  8. [Paddle-TRT] Fix engine key in trt int8 calibration (#31513)

    * fix engine key in trt int8 calibration
    
    * fix unit test
    cryoco authored Mar 12, 2021
    Configuration menu
    Copy the full SHA
    cac9635 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

  1. Configuration menu
    Copy the full SHA
    30a627a View commit details
    Browse the repository at this point in the history
  2. DataLoader supprot dict str (#31481)

    * add dict/str/list supprot for DataLoader. test=develop
    heavengate authored Mar 15, 2021
    Configuration menu
    Copy the full SHA
    a32e8bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9066b74 View commit details
    Browse the repository at this point in the history
  4. [CustomOp] Remove the dependence of the underlying data types on eigen (

    #31602)
    
    * init commit
    
    * move eigen of bfloat16
    
    * add complex header
    chenwhql authored Mar 15, 2021
    Configuration menu
    Copy the full SHA
    027b574 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c3634c6 View commit details
    Browse the repository at this point in the history
  6. Fix summary bug when calaculating output shape (#31549)

    * fix summary bug
    LielinJiang authored Mar 15, 2021
    Configuration menu
    Copy the full SHA
    7543312 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2021

  1. Configuration menu
    Copy the full SHA
    da10c5c View commit details
    Browse the repository at this point in the history
  2. fix wget with no proxy on windows (#31505)

    * fix wget with no proxy on windows
    
    * modified import packages
    
    * fix format error
    
    * fix bug
    
    * fix format error
    
    * fix format error
    XieYunshen authored Mar 16, 2021
    Configuration menu
    Copy the full SHA
    580442c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9c624b1 View commit details
    Browse the repository at this point in the history
  4. Update tinyformat.h (#31612)

    Quick fix to #13860
    yiakwy authored Mar 16, 2021
    Configuration menu
    Copy the full SHA
    c1b1ccf View commit details
    Browse the repository at this point in the history
  5. Optimize compilation with Ninja (#31449)

    * Optimize compilation with Ninja, notest, test=windows_ci, test=windows_op
    
    * no cache on windows ci, notest, test=windows_ci, test=windows_op
    
    * delete /Zc:inline compiled in NVCC, notest, test=windows_ci, test=windows_op
    
    * fix test_warpctc_op, notest, test=windows_ci
    
    * remove test code, test=develop
    Avin0323 authored Mar 16, 2021
    Configuration menu
    Copy the full SHA
    41e9ecf View commit details
    Browse the repository at this point in the history
  6. Second optimization of retry method (#31646)

    * Second optimization of retry method
    
    * fix show_ut_retry_result repeat execuate
    XieYunshen authored Mar 16, 2021
    Configuration menu
    Copy the full SHA
    1a6e3b0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d9b50f6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cdc5a55 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. Configuration menu
    Copy the full SHA
    4c0c55b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    19592d2 View commit details
    Browse the repository at this point in the history
  3. [CustomOp] Remove Eigen dependencies of float16 (#31669)

    * remove eigen deps dof float16
    
    * add cstdlib header
    
    * replace stdlib header by cmath
    chenwhql authored Mar 17, 2021
    Configuration menu
    Copy the full SHA
    2fbe9b0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    402288a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7f50bb7 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2021

  1. remove useless import (#31700)

    * remove useless import. test=develop
    heavengate authored Mar 18, 2021
    Configuration menu
    Copy the full SHA
    740359e View commit details
    Browse the repository at this point in the history
  2. 【Paddle.Fleet】Fix one ps gradient clip (#31664)

    * fix one ps gradient clip
    MrChengmo authored Mar 18, 2021
    Configuration menu
    Copy the full SHA
    09482dd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d4282ea View commit details
    Browse the repository at this point in the history
  4. [Paddle-TRT] support batch axis concatenation when using dynamic shape (

    #31627)
    
    * support batch axis concatenation when using dynamic shape
    
    * opteller can't return true early, or some test will not be executed
    zlsh80826 authored Mar 18, 2021
    Configuration menu
    Copy the full SHA
    4ea3427 View commit details
    Browse the repository at this point in the history
  5. [Paddle-TRT] gather converter (#31640)

    * trt gather converter
    
    * add trt gather unit_test
    zlsh80826 authored Mar 18, 2021
    Configuration menu
    Copy the full SHA
    fe241fd View commit details
    Browse the repository at this point in the history
  6. [CustomOp] Support complex dtype in custom op (#31657)

    * support custom complex op
    
    * fix detail error
    
    * add inference support
    
    * fix setup windows failed
    chenwhql authored Mar 18, 2021
    Configuration menu
    Copy the full SHA
    8785261 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2021

  1. Configuration menu
    Copy the full SHA
    420527f View commit details
    Browse the repository at this point in the history
  2. [dgraph qat] Refine calculating output scale of dygraph qat (#31710)

    * Refine calculating output scale of dygraph qat, test=develop
    juncaipeng authored Mar 19, 2021
    Configuration menu
    Copy the full SHA
    1d197f6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    50cafa0 View commit details
    Browse the repository at this point in the history
  4. NMS Performance Optimization (#31634)

    * replace mask vector to raw ptr
    
    * launch nms on context stream
    
    * remove redundant mask declaration
    zlsh80826 authored Mar 19, 2021
    Configuration menu
    Copy the full SHA
    c86e771 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a4a2b77 View commit details
    Browse the repository at this point in the history
  6. [CustomOp] Support attribute in infershape function (#31713)

    * support attribute in infershape
    
    * polish details
    chenwhql authored Mar 19, 2021
    Configuration menu
    Copy the full SHA
    e429deb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1c67cf0 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c9e1d9d View commit details
    Browse the repository at this point in the history
  9. [CustomOp] Support float16 in custom op (#31725)

    * support float16 in custom op
    
    * fix failed unittests
    chenwhql authored Mar 19, 2021
    Configuration menu
    Copy the full SHA
    878e117 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    25fc2a1 View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2021

  1. Configuration menu
    Copy the full SHA
    a45c8ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c19d7a View commit details
    Browse the repository at this point in the history
  3. Fix skip_quant in QAT (#31704)

    * Fix skip_quant in QAT
    gfwm2013 authored Mar 21, 2021
    Configuration menu
    Copy the full SHA
    ed7956a View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2021

  1. [3D-parallel] add 1f1b scheduler for pipeline (#31566)

    * add 1f1b scheduler for pp, test=develop
    lilong12 authored Mar 22, 2021
    Configuration menu
    Copy the full SHA
    a501a7b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7ccf6b6 View commit details
    Browse the repository at this point in the history
  3. [Paddle-TRT] nearest_interp op (#31626)

    * nearest_interp op converter w/ dynamic/static
    
    * fix data_layout include
    
    * add trt nearest unit_test
    
    * add nearest_interp NHWC test
    
    * update trt nearest interp nhwc testcase
    
    * remove asterisk for python2 compatibility
    
    * add empty line to prevent conflict
    
    * nearest_interp op converter w/ dynamic/static
    
    * fix data_layout include
    
    * add trt nearest unit_test
    
    * add nearest_interp NHWC test
    
    * update trt nearest interp nhwc testcase
    
    * remove asterisk for python2 compatibility
    
    * add empty line to prevent conflict
    
    * change the priority of out_h, out_w
    zlsh80826 authored Mar 22, 2021
    Configuration menu
    Copy the full SHA
    bfced39 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2021

  1. update approval (#31782)

    luotao1 authored Mar 23, 2021
    Configuration menu
    Copy the full SHA
    032de0b View commit details
    Browse the repository at this point in the history
  2. fix launch ps ut test=develop (#31771)

    fix launch ps ut test=develop
    gongweibao authored Mar 23, 2021
    Configuration menu
    Copy the full SHA
    f72d197 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    46dd1d4 View commit details
    Browse the repository at this point in the history
  4. fix tensorrt output varible reshape (#31733)

    * fix tensorrt output varible reshape
    
    * move padding shape x 1 x 1 in ernie to qkv and fc
    
    * update layer name
    
    * fix softmax when input is dynamic, fc not padding any more
    
    * fix varlen
    
    * move fc x_dim assert to op_teller
    shangzhizhou authored Mar 23, 2021
    Configuration menu
    Copy the full SHA
    9d04ef7 View commit details
    Browse the repository at this point in the history
  5. Delete fast_check_nan_inf (#31788)

    * Delete fast_check_nan_inf
    
    * Delete run_fast_nan_inf_debug
    tianshuo78520a authored Mar 23, 2021
    Configuration menu
    Copy the full SHA
    513641e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    814b38e View commit details
    Browse the repository at this point in the history
  7. add relu forward kernel and backward kernel (#31613)

    * add relu forward kernel and backward kernel
    AnnaTrainingG authored Mar 23, 2021
    Configuration menu
    Copy the full SHA
    372ac08 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f4d9212 View commit details
    Browse the repository at this point in the history
  9. Update windows compiler and CI from VS2015 to VS2017 (#31652)

    * modify windows CI to VS2017
    
    * modify windows CI to VS2017
    
    * modify windows CI to VS2017
    zhwesky2010 authored Mar 23, 2021
    Configuration menu
    Copy the full SHA
    a70de87 View commit details
    Browse the repository at this point in the history
  10. add coalesce_tensor into white list when checking re-creation of para…

    …meters (#31800)
    Feiyu Chan authored Mar 23, 2021
    Configuration menu
    Copy the full SHA
    4046f13 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3f66e7d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1eb927f View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2021

  1. Configuration menu
    Copy the full SHA
    270699e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68497e7 View commit details
    Browse the repository at this point in the history
  3. [dygraph qat] Refine saving output scale to infer program (#31784)

    * Refine saving output scale to infer program
    juncaipeng authored Mar 24, 2021
    Configuration menu
    Copy the full SHA
    84a5513 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f2cfc0f View commit details
    Browse the repository at this point in the history
  5. fix cache key in concat oneDNN kernel (#31820)

    * fix cache key in concat oneDNN kernel
    
    * key simplified
    Wojciech Uss authored Mar 24, 2021
    Configuration menu
    Copy the full SHA
    e5f7a83 View commit details
    Browse the repository at this point in the history
  6. [Dy2stat] Fix the bug that loop_body_func may return single element (#…

    …31806)
    
    Our old `loop_body` function may return single element when `loop_vars` just contains only 1 element, which can cause bug. The key point of this PR is forcing `loop_body` functions always return tuple.
    zhhsplendid authored Mar 24, 2021
    Configuration menu
    Copy the full SHA
    649868f View commit details
    Browse the repository at this point in the history
  7. Update pooling.py (#31829)

    Fix default argument of nn.MaxPool3D()
    parap1uie-s authored Mar 24, 2021
    Configuration menu
    Copy the full SHA
    5d89ec3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e7f28d6 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2021

  1. Configuration menu
    Copy the full SHA
    6472d62 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    511e204 View commit details
    Browse the repository at this point in the history
  3. Polish two error messages (#31852)

    * polish two error messages
    
    * polish details
    chenwhql authored Mar 25, 2021
    Configuration menu
    Copy the full SHA
    27f2d8d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bf09dcb View commit details
    Browse the repository at this point in the history
  5. 【Paddle.Fleet】fix dataset zip py3 bug (#31441)

    * fix zip py3 bug
    MrChengmo authored Mar 25, 2021
    Configuration menu
    Copy the full SHA
    f58cb01 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2021

  1. delete include framework.pb.h (#31859)

    * delete include framework.pb.h
    
    * fix error
    tianshuo78520a authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    e804f08 View commit details
    Browse the repository at this point in the history
  2. fix go api bug. (#31857)

    jiweibo authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    70b67f1 View commit details
    Browse the repository at this point in the history
  3. [Paddle-TRT] multiclass nms (#31742)

    * add multiclass_nms
    
    * add multiclass_nms unittest
    
    * add default enable_tensorrt_oss option
    
    * refine multiclas nms unittest and add serialization/dynamic test
    
    * change super to InferencePassTest for python2 compatibility
    
    * refine multiclass nms unittest
    
    * move out dynamic shape test due to ci timelimit
    zlsh80826 authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    01aa252 View commit details
    Browse the repository at this point in the history
  4. [3D-parallel] Reformat pipeline parallel (#31786)

    * update, test=develop
    lilong12 authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    c3974d0 View commit details
    Browse the repository at this point in the history
  5. [dygraph qat] Use layer to calculate output scale (#31861)

    * Use layer to calculate output scale
    * add backward for moving_average_abs_max_scale and save output scales to op's attr
    juncaipeng authored Mar 26, 2021
    Configuration menu
    Copy the full SHA
    b47478e View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2021

  1. [Paddle-TRT] trt affine channel converter (#31628)

    * trt affine channel converter
    
    * add trt affine channel base test
    
    * add trt affine channel NHWC
    
    * remove asterisk for python2 compatibility
    
    * trt affine channel converter
    
    * add trt affine channel base test
    
    * add trt affine channel NHWC
    
    * remove asterisk for python2 compatibility
    
    * fix rebase
    
    * move LodTensor to Tensor
    
    * add dbg info
    
    * affine channel converter only support NCHW
    
    * scale,bias are parameters, use create_parameters api
    
    * reduce test input size to not exceed the timelimit of ci
    
    * refine affine channel unittest and add serialization/dynamic test
    
    * change super to InferencePassTest for python2 compatibility
    
    * change super to InferencePassTest for python2 compatibility
    
    * fix affine channel fp16 serialize setting
    zlsh80826 authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    bfb5cf5 View commit details
    Browse the repository at this point in the history
  2. [Paddle-TRT] roi_align_plugin (#31732)

    * add roi_align_plugin
    
    * add roi align unit_test
    
    * add roi align serialization
    
    * remove roi align static plugin because of batch dim issue
    
    * refine roi align unittest and add fp16/serialization
    
    * add trt roi align condition to op_teller
    
    * refine error message
    
    * remove unnecessary reshape layer
    zlsh80826 authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    e3a38d7 View commit details
    Browse the repository at this point in the history
  3. [CustomOP] Add shape related constructor for Tensor (#31681)

    * give shape related contructor and reshape warning
    
    * change line num to fit ut
    
    * change ut to fit
    
    * remove useless code
    
    * call resize directly in constructor
    JiabinYang authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    51eb29d View commit details
    Browse the repository at this point in the history
  4. fix cmake model path (#31866)

    * fix cmake model path
    
    * update cmake
    
    * fix unittest
    
    * fix unittest
    shangzhizhou authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    61805d8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    123949e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    525c32e View commit details
    Browse the repository at this point in the history
  7. modify API nn.Bilinear's doc (#31889)

    * modify API nn.Bilinear's doc, test=develop
    
    * modify API nn.Bilinear's doc, test=develop
    wanghuancoder authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    b48841b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8829a30 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a71d72d View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2021

  1. Configuration menu
    Copy the full SHA
    17030ff View commit details
    Browse the repository at this point in the history
  2. Fix segment Fault from set_value (#31891)

    * Avoid raising warning while import paddle
    
    * fix segment fault of set_value
    
    * fix code style
    Aurelius84 authored Mar 30, 2021
    Configuration menu
    Copy the full SHA
    c4b60ef View commit details
    Browse the repository at this point in the history
  3. [Paddle-TRT] yolobox (#31755)

    * yolobox converter and plugin
    
    * yolobox unittest
    
    * add dynamic shape restriction
    
    * fix git merge log
    zlsh80826 authored Mar 30, 2021
    Configuration menu
    Copy the full SHA
    64ee255 View commit details
    Browse the repository at this point in the history
  4. fix batchnorm when inpu dims < 3 (#31933)

    * fix batchnorm when inpu dims < 3
    
    * add unittest for batchnorm dims = 2
    shangzhizhou authored Mar 30, 2021
    Configuration menu
    Copy the full SHA
    8084b75 View commit details
    Browse the repository at this point in the history
  5. add deprecated for softmax_with_cross_entropy (#31722)

    * add deprecated for softmax_with_cross_entropy, test=develop
    
    * test for deprecated in english doc, test=develop
    
    * test deprecated for softmax_with_cross_entropy in english doc, test=develop
    
    * fix readme and English doc for cross_entropy, test=develop
    
    * rm test for softmax_with_cross_entropy deprecated, test=develop
    
    * update readme for CrossEntropyLoss, test=develop
    
    * fix readme format, test=develop
    
    * fix readme format, test=develop
    
    * fix readme format for cross_entropy, test=develop
    
    * add softmax_switch and fix softlabel for cross_entropy, test=develop
    
    * 1)recovery softmax_with_cross_entropy in fluid 2) change softmax_switch to use_softmax 3) add example for softlabel for cross_entropy, test=develop
    
    * fix Example number for cross_entropy, test=develop
    
    * fix code format, test=develop
    
    * fix for CI-Coverage, test=develop
    
    * fix for CI-Coverage, test=develop
    
    * fix ci-coverage for Non-ASCII character '\xe2' in file, test=develop
    
    * fix ci-coverage for Non-ASCII character '\xe2' in nn.layer.loss.py, test=develop
    
    * update description for doc when use_softmax=Fasle, test=develop
    
    * fix some docs and code example for cross_entropy, test=develop
    
    * delete redundant description for soft_label parameter of cross_entropy, test=develop
    
    * fix some comment for test_cross_entropy_loss.py, test=develop
    chajchaj authored Mar 30, 2021
    Configuration menu
    Copy the full SHA
    73a6fa3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fe28486 View commit details
    Browse the repository at this point in the history
  7. [Custom OP]Remove old custom OP and reduce whl package volume (#31813)

    * Remove old custom OP to reduce whl package volume
    
    * [Custom OP]Remove old custom OP to reduce whl package volume
    zhwesky2010 authored Mar 30, 2021
    Configuration menu
    Copy the full SHA
    04a49b0 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e50bc2c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e1f9316 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    245252b View commit details
    Browse the repository at this point in the history
  11. [Paddle-TRT] TRT inference support for BERT/Transformer in paddle 2.0…

    … api (#31744)
    
    * support multihead_matmul_fuse_pass_v3
    
    * fix compile problems
    
    * embedding_eltwise_ln pass support lookup_table_v2
    
    * suppoort matmul and matmul_v2 in qkv matmul
    cryoco authored Mar 30, 2021
    Configuration menu
    Copy the full SHA
    14b7e3c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    6dca7a1 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a37a7f6 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    98e803e View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    0fa6c8a View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    57d4288 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    95f808c View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2021

  1. [ROCM] Add ROCm support for warpctc op (#31817)

    * bugfix for warpctc
    
    * fix warpctc commit id
    
    * fix warpctc commit id
    
    * fix warpctc commit id
    
    * fix warpctc commit id
    
    * fix warpctc commit id
    
    * fix WARPCTC_WITH_HIP invalid
    
    * Add logs to find out why can not dlopen libwarpctc.so
    
    * fix warpctc commit id
    
    * fix unit test test_warpctc_op
    
    * Optime failed log for dlopen
    
    * Optime failed log for dlopen
    
    * Delete extra changes
    
    * fix warpctc commit id
    
    * fix warpctc commit id
    
    * Add is_compiled_with_rocm for test_warpctc_op
    
    * fix warpctc commit id
    
    * Cancel optimize dlopen failed reason, move to next pr, due to it makes windows ci failed
    
    * Cancel optimize dlopen failed reason, move to next pr, due to it makes windows ci failed
    
    * Cancel optimize dlopen failed reason, move to next pr, due to it makes windows ci failed
    
    * fix code style problems
    windstamp authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    ef8323d View commit details
    Browse the repository at this point in the history
  2. support minus-int idx to LayerList (#31750)

    * support minus-int idx to LayerList
    * update layerlist test
    lyuwenyu authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    5394194 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    52b05ba View commit details
    Browse the repository at this point in the history
  4. update cmake minimum version to 3.15 (#31807)

    * update cmake minimum version to 3.15, test=develop
    
    * fix compilation error on Windows, test=develop
    
    * fix compilation error on Windows, test=develop
    
    * fix compilation error on Windows, test=develop
    Avin0323 authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    3a95a0b View commit details
    Browse the repository at this point in the history
  5. fix split core (#31892)

    * fix split core
    
    * format
    Thunderbrook authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    393b3bd View commit details
    Browse the repository at this point in the history
  6. fix whl package push pypi (#31585)

    * fix whl package push pypi
    
    * add rst
    tianshuo78520a authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    b09c1ce View commit details
    Browse the repository at this point in the history
  7. update compilation with C++14 (#31815)

    * update compilation with C++14, test=develop
    
    * fix compilation error in eigen, test=develop
    Avin0323 authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    587d99a View commit details
    Browse the repository at this point in the history
  8. Update eigen version to f612df27 (#31832)

    * update eigen version to f612df27, test=develop
    
    * fix compilation error, test=develop
    
    * remove patch command in eigen, test=develop
    
    * fix compilation error caused by call Eigen function with float16 and bfloat16, test=develop
    
    * fix unittest error, test=develop
    
    * fix unittest error caused by precision, test=develop
    
    * remove patch files used by old version eigen, test=develop
    Avin0323 authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    495e7f9 View commit details
    Browse the repository at this point in the history
  9. Polish tensor pipeline (#31701)

    * polish tensor pipeline. test=develop
    heavengate authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    e973bd7 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ea738dd View commit details
    Browse the repository at this point in the history
  11. fix one error massage (#31904)

    * fix one error massage
    
    * fix a error message
    
    * new fix three error messages
    
    * new fix three error messages
    
    * new fix some error
    
    * new fix one error message
    Kqnonrime authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    6f85e24 View commit details
    Browse the repository at this point in the history
  12. Adjust pipeline optimizer for 3d parallelism (#31939)

    * update, test=develop
    lilong12 authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    695dd37 View commit details
    Browse the repository at this point in the history
  13. [Parallel UT]Improve Parallel UT level on Windows/Linux (#31377)

    * [Parallel UT]improve Parallel UT level on Windows/Linux
    
    * [Parallel UT]improve Parallel UT level on Windows/Linux
    
    * [Parallel UT]Improve Parallel UT level on Windows/Linux
    
    * [Parallel UT]Improve Parallel UT level on Windows/Linux
    
    * fix CI
    zhwesky2010 authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    b05f614 View commit details
    Browse the repository at this point in the history
  14. Delete legacy C++ training user-interface (#31949)

    * delete include framework.pb.h
    
    * fix error
    
    * delete fluid_train
    tianshuo78520a authored Mar 31, 2021
    Configuration menu
    Copy the full SHA
    d5b5004 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2021

  1. Configuration menu
    Copy the full SHA
    eb3199f View commit details
    Browse the repository at this point in the history
  2. fix en doc for emb (#31980)

    * fix en doc for emb, test=document_fix;
    Change-Id: I4757e67caacd7189f068493ed45a7445f87ffb40
    seiriosPlus authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    6b74486 View commit details
    Browse the repository at this point in the history
  3. Refactor and simplify hook design & add Tensor.register_hook API (#31775

    )
    
    * refactor and simplify hook design
    
    * fix reducer add hook error
    
    * add Tensor.register_hook basic impl
    
    * refine prepare data impl
    
    * revert prepare data change
    
    * support register_hook for Tensor
    
    * add hook test in model
    
    * polish tests and doc example
    
    * fix double grad test failed
    
    * remove reduce hook func
    
    * fix set empty error
    
    * polish code by comments
    
    * change reduce_hook to mutable_hook
    
    * remove useless tmp_ins
    
    * fix shape code format error
    
    * fix shape code format error
    chenwhql authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    dbeb3ea View commit details
    Browse the repository at this point in the history
  4. new group (#31682)

    * new group
    
    * ci compatible fix
    
    * assert nccl
    kuizhiqing authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    0774159 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    980227f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4acc87b View commit details
    Browse the repository at this point in the history
  7. [Paddle-TRT] add anchor generator op plugin (#31730)

    * add anchor generator op plugin
    
    * add anchor generator unit_test
    
    * remove dbg info
    
    * remove redundant line
    
    * replace assertion with paddle enforce
    
    * dynamic plugin replaces assertion with paddle enforce
    
    * anchor generator support dynamic shape on spatial axis
    
    * anchor generator test with fp16, dynamic shape
    
    * add anchor generator test all
    
    * add back main
    
    * reduce test input size to not exceed the timelimit of ci
    
    * change super to InferencePassTest for python2 compatibility
    
    * reuse paddle operator anchor generator
    
    * move creator construct to header with default
    
    * add cuda ifdef
    
    * reduce line
    
    * change super to InferencePassTest for python2 compatibility
    
    * fix anchor generator fp16 serialize setting
    
    * split unittest from test_all
    
    * restrict anchor generator input format before version 7234
    
    * anchor generator only support greater than trt7.1
    
    * change min_graph_size to 2
    
    * min_graph size to 3 if dynamic shape
    
    * reduce dynamic shape size to avoid trt search tactic too long to exceed time limit
    
    * remove anchor from fetch list
    
    * anchor generator support all trt version
    
    * fix memory not allocated but if serialized
    zlsh80826 authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    b807e40 View commit details
    Browse the repository at this point in the history
  8. LOG CLEAN (#31819)

    * upgrade vlog
    
    * train from dataset fetch optimize
    seiriosPlus authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    0589ed2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9c5d028 View commit details
    Browse the repository at this point in the history
  10. add custom init grad for backward function (#31540)

    * add custom init grad for backward function
    
    * add custom init grad for backward function
    
    * handle when the grad_tensor is none
    
    * handle when the grad_tensor is none
    
    * fix the args type error on windows platform
    
    * modify the args order and doc
    
    * format code
    
    * add grad_tensor to xpu
    
    * modify the grad_tensor type check
    
    * add paddle.backward api to support multi tensors gradient compute
    
    * add paddle.backward api to support multi tensors gradient compute
    
    * add paddle.atuograd module and backward api
    
    * change tensor.backward func args
    
    * modify tensor backward api
    
    * remove create_graph intputs args
    
    * add doc and examplex code for backward api
    
    * when have the same tensor, throw error
    
    * modify test Init func args
    
    * modify the execute.Init func args in test files
    
    * add paddle.autograd package in setup.py.in
    
    * modify error msg, remove _run_backward method in class Tensor
    
    * add test cases for backward api
    MingMingShangTian authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    83b953f View commit details
    Browse the repository at this point in the history
  11. fix doc of Pooling layers (#31977)

    * fix doc of MaxPool1D
    
    * fix doc
    
    * fix doc format error
    
    * dbg
    
    * fix doc
    
    * dbg doc format test=document_fix
    
    * fix format test=document_fix
    
    * test doc
    
    * remove - from doc
    
    * fix indent
    
    * remove space before bracket
    
    * dbg format
    
    * fix indent test=document_fix
    
    * remove new line
    
    * fix descrip of Shape test=document_fix
    
    * add description for default value test=document_fix
    
    * fix bug test=document_fix
    weisy11 authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    40e6c57 View commit details
    Browse the repository at this point in the history
  12. Support control flow in DataParallel (#31625)

    * support control flow
    
    * supoort sync_parameters_buffers
    
    * fix the bug of sparse embedding
    ForFishes authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    8460698 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    1b6c1d3 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    68e7de2 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    a4b30a1 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    df5aff8 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    0e52cdf View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2021

  1. Configuration menu
    Copy the full SHA
    0b42f48 View commit details
    Browse the repository at this point in the history
  2. add leaky_relu forward and backward in activation_op.cu (#31841)

    * add leaky_relu forward and backward in activation_op.cu
    AnnaTrainingG authored Apr 2, 2021
    Configuration menu
    Copy the full SHA
    4490e8a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9e06a64 View commit details
    Browse the repository at this point in the history
  4. graph engine (#31226)

    * graph engine demo
    
    * upload unsaved changes
    
    * fix dependency error
    
    * fix shard_num problem
    
    * py client
    
    * remove lock and graph-type
    
    * add load direct graph
    
    * add load direct graph
    
    * add load direct graph
    
    * batch random_sample
    
    * batch_sample_k
    
    * fix num_nodes size
    
    * batch brpc
    
    * batch brpc
    
    * add test
    
    * add test
    
    * add load_nodes; change add_node function
    
    * change sample return type to pair
    
    * resolve conflict
    
    * resolved conflict
    
    * resolved conflict
    
    * separate server and client
    
    * merge pair type
    
    * fix
    
    * resolved conflict
    
    * fixed segment fault; high-level VLOG for load edges and load nodes
    
    * random_sample return 0
    
    * rm useless loop
    
    * test:load edge
    
    * fix ret -1
    
    * test: rm sample
    
    * rm sample
    
    * random_sample return future
    
    * random_sample return int
    
    * test fake node
    
    * fixed here
    
    * memory leak
    
    * remove test code
    
    * fix return problem
    
    * add common_graph_table
    
    * random sample node &test & change data-structure from linkedList to vector
    
    * add common_graph_table
    
    * sample with srand
    
    * add node_types
    
    * optimize nodes sample
    
    * recover test
    
    * random sample
    
    * destruct weighted sampler
    
    * GraphEdgeBlob
    
    * WeightedGraphEdgeBlob to GraphEdgeBlob
    
    * WeightedGraphEdgeBlob to GraphEdgeBlob
    
    * pybind sample nodes api
    
    * pull nodes with step
    
    * fixed pull_graph_list bug; add test for pull_graph_list by step
    
    * add graph table;name
    
    * add graph table;name
    
    * add pybind
    
    * add pybind
    
    * add FeatureNode
    
    * add FeatureNode
    
    * add FeatureNode Serialize
    
    * add FeatureNode Serialize
    
    * get_feat_node
    
    * avoid local rpc
    
    * fix get_node_feat
    
    * fix get_node_feat
    
    * remove log
    
    * get_node_feat return  py:bytes
    
    * merge develop with graph_engine
    
    * fix threadpool.h head
    
    * fix
    
    * fix typo
    
    * resolve conflict
    
    * fix conflict
    
    * recover lost content
    
    * fix pybind of FeatureNode
    
    * recover cmake
    
    * recover tools
    
    * resolve conflict
    
    * resolve linking problem
    
    * code style
    
    * change test_server port
    
    * fix code problems
    
    * remove shard_num config
    
    * remove redundent threads
    
    * optimize start server
    
    * remove logs
    
    * fix code problems by reviewers' suggestions
    
    Co-authored-by: Huang Zhengjie <270018958@qq.com>
    Co-authored-by: Weiyue Su <weiyue.su@gmail.com>
    Co-authored-by: suweiyue <suweiyue@baidu.com>
    Co-authored-by: luobin06 <luobin06@baidu.com>
    Co-authored-by: liweibin02 <liweibin02@baidu.com>
    6 people authored Apr 2, 2021
    Configuration menu
    Copy the full SHA
    94736d6 View commit details
    Browse the repository at this point in the history
  5. update trt engine addplugin name. (#32018)

    * update trt engine addplugin name.
    
    * update
    jiweibo authored Apr 2, 2021
    Configuration menu
    Copy the full SHA
    d918786 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ed49b41 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cd74b20 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bf10d56 View commit details
    Browse the repository at this point in the history
  9. support save/load single tensor (#31756)

    * support save/load single tensor
    
    * compatibility modification according to unnittest
    
    * Some python2.7 don't have 'copyreg' modules
    
    * Handle a syntax error.
    
    * Dealing with compatibility problems on Mac.
    
    * Dealing with compatibility problems on Mac.
    
    * edit unittest to improve coverage.
    
    * Modify the code according to the review comments
    
    * Reduce redundant code.
    
    * support for static graph loading dygraph state_dict
    
    * edit code according to CI
    
    * edit unittest
    
    * edit unnittest
    
    * delete redundant file
    
    * edit code according to Comments
    
    * edit english doc
    
    * edit english doc
    
    * edit English DOC.
    
    * get/set_tensor->get/set_value; return_numpy=False
    
    * get/set_tensor->get/set_value; return_numpy=False
    
    * edit unnittest
    
    * edit unnittest
    
    * polish code.
    hbwx24 authored Apr 2, 2021
    Configuration menu
    Copy the full SHA
    43367e4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    69c874f View commit details
    Browse the repository at this point in the history
  11. use busybox run test on windows openblas (#31728)

    * use busybox run test on windows openblas
    
    * fix error
    
    * fix disable_quick and nightly lable issue
    
    * add retry on windows openblas
    
    * fix bug
    
    * use one file to run cpu and gpu tests
    
    * fix with grep warning
    
    * fix syntax error
    
    * change run_unittest to run_unittest_gpu
    
    * Update run_unittests.sh
    
    fix error
    XieYunshen authored Apr 2, 2021
    Configuration menu
    Copy the full SHA
    290be88 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2021

  1. Configuration menu
    Copy the full SHA
    36687d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1e52f32 View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2021

  1. Configuration menu
    Copy the full SHA
    a3b08ba View commit details
    Browse the repository at this point in the history
  2. [Hybrid Parallel] Add Topology for hybrid communicate (#32011)

    * support hyparallel, add topology
    
    * fix utest
    ForFishes authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    2e82b6c View commit details
    Browse the repository at this point in the history
  3. fix two error message (#32039)

    * fix two error message
    
    * fix two error message
    
    * fix error
    
    * fix error
    
    * fix error
    
    * fix error
    Kqnonrime authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    9e8f903 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6d6ea56 View commit details
    Browse the repository at this point in the history
  5. [PaddleTRT] Yolov3 bugfix (#32064)

    * fix yolobox teller condition
    
    * fix cuda double free bug
    zlsh80826 authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    b17e36a View commit details
    Browse the repository at this point in the history
  6. fix test of affine_grid with rocm (#32047)

    * fix test of affine_grid with rocm
    
    * fix test of affine_grid with rocm
    Ray2020BD authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    78af100 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    187bf41 View commit details
    Browse the repository at this point in the history
  8. fix fc doc (#32084)

    Joejiong authored Apr 6, 2021
    Configuration menu
    Copy the full SHA
    a17c369 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b8b82b7 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2021

  1. Struct SparseValue && Bug Fix (#31721)

    * add PullSparseValue for pull sparse
    
    * fix bug for PullSparseValue
    
    * add test mode in lookuptable
    
    * revert API change
    
    * add comment for is_training
    seiriosPlus authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    a881b4d View commit details
    Browse the repository at this point in the history
  2. print build summary (#32110)

    * print build summary
    
    * print build summary
    
    * print build summary
    
    * print build summary
    iducn authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    e625f88 View commit details
    Browse the repository at this point in the history
  3. update name of develop whl package and upgrade gcc 4.8.2 to gcc 5.4 (#…

    …31240)
    
    * update develop whl package name
    
    * distingush cpu and gpu name
    
    * fix ref_gcc
    
    * change whl name
    
    * upgrade gcc 4.8 to 5.4 in ubuntu_dev
    
    * update gcc4.8 to 5.4 in centos
    
    * Upgrade pip from 18.0 to 20.0.1
    
    * change 2.1.0_dev0 to 2.1.0.dev0 in gpu version
    pangyoki authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    f5186c3 View commit details
    Browse the repository at this point in the history
  4. update the TraceLayer.save_inference_model method with add file suffi…

    …x automatically (#31989)
    
    As the title
    CtfGo authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    10af966 View commit details
    Browse the repository at this point in the history
  5. improve performance of DepthwiseConv(NHWC) (#31677)

    * improve performance of DepthwiseConv(NWHC)
    OuyangChao authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    363b25a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1e60a0c View commit details
    Browse the repository at this point in the history
  7. 【NPU】Merge ascend GE&distributed code by 0208 from ascendrc (#31957)

    * Ascend rc (#30483)
    
    * Fix compilcation on CANN20.1 and older (#30494)
    
    Fix compilcation on CANN20.1 and older
    
    * Add distribution supported (#30578)
    
    Add distribution supported
    
    * Build praser for Hcom* operators (#30627)
    
    Build praser for Hcom* operators
    
    * Pass device_ids info from launch to trainer. (#30632)
    
    Pass device_ids info from launch to trainer
    
    * Add Hccl program group (#30642)
    
    Add Hccl program group
    
    * Add startup bash files of test_ascend_group. (#30645)
    
    Add startup bash files of test_ascend_group
    
    * cleanup (#30646)
    
    cleanup test_ascend_group.py
    
    * [Feature] Build parser to support distributed training (#30658)
    
    [Feature] Build parser to support distributed training
    
    * fix compilation on ascend-20.1 (#30722)
    
    fix compilation on ascend-20.1
    
    * Dev/fix ascend string (#30749)
    
    Dev/fix ascend string
    
    * code style (#30781)
    
    code style
    
    * Merge ascend_optimizer and ascend_parser. (#30776)
    
    Merge ascend_optimizer and ascend_parser.
    
    * Ascendrc add converted op : [range/equal/range/uniform_random/expand/squeeze], fix cast op bug  (#30797)
    
    Ascendrc add converted op : [range/equal/range/uniform_random/expand/squeeze], fix cast op bug
    
    * Add paddle ascend distribution training supported (#30796)
    
    Add paddle ascend distribution training supported
    
    * pass cxx_flags to gloo cmake (#30857)
    
    * Destroy session first. (#30954)
    
    Destroy session first.
    
    * merge
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix style, test=develop
    
    * fix, test=develop
    
    * fix
    
    * fix log fatal, test=develop
    
    * fix enforce style, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix rccl, test=develop
    
    * fix test, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix node_num, test=develop
    
    * fix ids str, test=develop
    
    * fix ids str, test=develop
    
    * fix ids str, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix, test=develop
    
    * fix style code, test=develop
    
    * fix style code, test=develop
    
    * fix style code, test=develop
    
    * fix style code, test=develop
    
    Co-authored-by: hutuxian <hutuxian2011@sina.cn>
    Co-authored-by: gongweibao <weibao.gong@gmail.com>
    Co-authored-by: Void Main <voidmain1313113@gmail.com>
    Co-authored-by: Leo Chen <chenqiuliang@baidu.com>
    Co-authored-by: dingsiyu <18369187719@163.com>
    Co-authored-by: OleNet <olenet@126.com>
    7 people authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    8c7c53b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d91faf2 View commit details
    Browse the repository at this point in the history
  9. Check added ut on windows (#31826)

    * added ut check on windows,notest,test=windows_ci
    
    * debug,notest,test=windows_ci
    
    * debug,notest,test=windows_ci
    
    * fix bug,notest,test=windows_ci
    
    * added ut check
    
    * test for new ut add on windows
    
    * test,notest,test=windows_ci
    
    * fix bug,notest,test=windows_ci
    
    * test
    
    * test
    
    * test
    
    * test,notest,test=windows_ci
    
    * test,notest,test=windows_ci
    
    * check added ut on windows
    
    * only fetch upstream develop
    
    * modified according comment
    
    * Update run_unittests.sh
    
    * Update run_unittests.sh
    XieYunshen authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    e09f4db View commit details
    Browse the repository at this point in the history
  10. move graph files (#32103)

    * graph engine demo
    
    * upload unsaved changes
    
    * fix dependency error
    
    * fix shard_num problem
    
    * py client
    
    * remove lock and graph-type
    
    * add load direct graph
    
    * add load direct graph
    
    * add load direct graph
    
    * batch random_sample
    
    * batch_sample_k
    
    * fix num_nodes size
    
    * batch brpc
    
    * batch brpc
    
    * add test
    
    * add test
    
    * add load_nodes; change add_node function
    
    * change sample return type to pair
    
    * resolve conflict
    
    * resolved conflict
    
    * resolved conflict
    
    * separate server and client
    
    * merge pair type
    
    * fix
    
    * resolved conflict
    
    * fixed segment fault; high-level VLOG for load edges and load nodes
    
    * random_sample return 0
    
    * rm useless loop
    
    * test:load edge
    
    * fix ret -1
    
    * test: rm sample
    
    * rm sample
    
    * random_sample return future
    
    * random_sample return int
    
    * test fake node
    
    * fixed here
    
    * memory leak
    
    * remove test code
    
    * fix return problem
    
    * add common_graph_table
    
    * random sample node &test & change data-structure from linkedList to vector
    
    * add common_graph_table
    
    * sample with srand
    
    * add node_types
    
    * optimize nodes sample
    
    * recover test
    
    * random sample
    
    * destruct weighted sampler
    
    * GraphEdgeBlob
    
    * WeightedGraphEdgeBlob to GraphEdgeBlob
    
    * WeightedGraphEdgeBlob to GraphEdgeBlob
    
    * pybind sample nodes api
    
    * pull nodes with step
    
    * fixed pull_graph_list bug; add test for pull_graph_list by step
    
    * add graph table;name
    
    * add graph table;name
    
    * add pybind
    
    * add pybind
    
    * add FeatureNode
    
    * add FeatureNode
    
    * add FeatureNode Serialize
    
    * add FeatureNode Serialize
    
    * get_feat_node
    
    * avoid local rpc
    
    * fix get_node_feat
    
    * fix get_node_feat
    
    * remove log
    
    * get_node_feat return  py:bytes
    
    * merge develop with graph_engine
    
    * fix threadpool.h head
    
    * fix
    
    * fix typo
    
    * resolve conflict
    
    * fix conflict
    
    * recover lost content
    
    * fix pybind of FeatureNode
    
    * recover cmake
    
    * recover tools
    
    * resolve conflict
    
    * resolve linking problem
    
    * code style
    
    * change test_server port
    
    * fix code problems
    
    * remove shard_num config
    
    * remove redundent threads
    
    * optimize start server
    
    * remove logs
    
    * fix code problems by reviewers' suggestions
    
    * move graph files into a folder
    
    * code style change
    
    * remove graph operations from base table
    
    Co-authored-by: Huang Zhengjie <270018958@qq.com>
    Co-authored-by: Weiyue Su <weiyue.su@gmail.com>
    Co-authored-by: suweiyue <suweiyue@baidu.com>
    Co-authored-by: luobin06 <luobin06@baidu.com>
    Co-authored-by: liweibin02 <liweibin02@baidu.com>
    Co-authored-by: tangwei12 <tangwei12@baidu.com>
    7 people authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    4935b8e View commit details
    Browse the repository at this point in the history
  11. add uint8 type for flatten op (#32120)

    * add uint8 type for flatten;test=develop
    danleifeng authored Apr 7, 2021
    Configuration menu
    Copy the full SHA
    297290a View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2021

  1. Configuration menu
    Copy the full SHA
    f74f976 View commit details
    Browse the repository at this point in the history
  2. fix bug (#32135)

    ForFishes authored Apr 8, 2021
    Configuration menu
    Copy the full SHA
    7230203 View commit details
    Browse the repository at this point in the history
  3. The unsupported_fp16_list using in AMP will be created automatically …

    …during the runtime. (#32102)
    
    * Use the runtime to create the unsupported_fp16_list using in AMP.
    
    * Add more infos about supported ops.
    
    * Add some comments for the function of OpSupportedInfos.
    
    * Fix the unit test of test_multi_precision_fp16_train.
    wzzju authored Apr 8, 2021
    Configuration menu
    Copy the full SHA
    6e65fe0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5434496 View commit details
    Browse the repository at this point in the history
  5. Add LayerDict class (#31951)

    * add layerdict class
    
    * add docs and test cases for LayerDict class
    
    * remove the arguments type in function define
    
    * add update inputs type check
    MingMingShangTian authored Apr 8, 2021
    Configuration menu
    Copy the full SHA
    e45c3fa View commit details
    Browse the repository at this point in the history
  6. Support converting the model from fp32 to fp16 (#32112)

    * Support converting the model from fp32 to fp16
    juncaipeng authored Apr 8, 2021
    Configuration menu
    Copy the full SHA
    1bae1e7 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2021

  1. Configuration menu
    Copy the full SHA
    3822247 View commit details
    Browse the repository at this point in the history
  2. Candidate fix to #31992 (#32136)

    jczaja authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    dabaca0 View commit details
    Browse the repository at this point in the history
  3. [Dy2Stat] Support DictCmp and zip grammer (#32159)

    * support DictCmp and zip grammar
    
    * fix code style
    Aurelius84 authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    55730d9 View commit details
    Browse the repository at this point in the history
  4. [CustomOp]Support MacOS platform and Remove libpaddle_custom_op.so de…

    …pendency (#31976)
    
    * Remove old custom OP to reduce whl package volume
    
    * [Custom OP]Remove old custom OP to reduce whl package volume
    
    * support macos
    Aurelius84 authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    d815fbf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    95122eb View commit details
    Browse the repository at this point in the history
  6. [Dy2Stat] Fix undefined var used in For (#32153)

    * fix undefind var in For
    
    * fix code style
    Aurelius84 authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    4636d13 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a73cb67 View commit details
    Browse the repository at this point in the history
  8. [NPU] cherry-pick basic NPU components/allocator/operator/executor su…

    …pports from ascendrc (#32144)
    
    * [feature] support npu allocator (#30840)
    
    [feature] support npu allocator
    
    * [feature] support npu operator (#30951)
    
    [feature] support npu operator
    
    * [feature] support npu allocator, part 2 (#30972)
    
    * support npu allocator
    
    * add npu device context
    
    * fix some compile problem
    
    * fix some compile problem
    
    * add npu info
    
    * compile ok
    
    * fix include dir
    
    * support naive_best_fit_allocator
    
    * run ut ok, bug failed to exit
    
    * call aclrtResetDevice before exit
    
    * fix aclFinilize
    
    * add system allocatot test
    
    * add selected_gpus in gtest
    
    * add tensor_test for npu
    
    * support npu op, initial commit
    
    * add npu stream
    
    * add elementwise_add_op
    
    * compile ok
    
    * fix typo
    
    * fix elementwise_add_op_npu_test
    
    * support op run
    
    * test can run but failed
    
    * change aclopExecuteV2 to aclopCompileAndExecute
    
    * support parsing ascend rank table file (#31000)
    
    support parsing ascend rank table file
    
    * Fix reshape on GE graph. (#31084)
    
    Fix reshape on GE graph
    
    * add npu kernel for elementwise_sub and elementwise_sub_grad (#30973)
    
    * add npu sub op
    
    * fix typo
    
    * rename test
    
    * fix bug
    
    * fix bug
    
    * add fp16 kernel
    
    * fix typo
    
    * support sub grad op
    
    * support elementwise_sub_grad op
    
    Co-authored-by: frankwhzhang <frankwhzhang@126.com>
    
    * Fix compilation problem (#31100)
    
    Fix compilation problem (#31100)
    
    * fix compile
    
    * fix code stype
    
    * remove const_cast
    
    * support adding correct npu op in pybind.h (#31143)
    
    * support adding correct npu op in pybind.h
    
    * refine code
    
    * [NPU] Support executor with NPU (#31057)
    
    * [NPU] Support executor with NPU
    
    * Fix code according to reviews
    
    * Fix code
    
    * Add unittest for sub op npu
    
    * refactor npu device manager (#31154)
    
    refactor npu device manager (#31154)
    
    * fix selected npus
    
    * fix compile
    
    * fix reading flags from env
    
    * format
    
    Co-authored-by: xiayanming <41795079@qq.com>
    Co-authored-by: gongweibao <weibao.gong@gmail.com>
    Co-authored-by: frankwhzhang <frankwhzhang@126.com>
    Co-authored-by: liym27 <33742067+liym27@users.noreply.github.com>
    5 people authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    ccf5709 View commit details
    Browse the repository at this point in the history
  9. make high precision for avg_pool and adaptive_avg_pool when data_type…

    … is float16 (#31887)
    
    * make high precision for avg_pool
    AnnaTrainingG authored Apr 9, 2021
    Configuration menu
    Copy the full SHA
    ec2ffb6 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2021

  1. Configuration menu
    Copy the full SHA
    afa3720 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f8bab5b View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2021

  1. fix concat_grad on kunlun (#32151)

    * fix concat_grad on kunlun
    
    * fix concat_grad on kunlun
    tangzhiyi11 authored Apr 12, 2021
    Configuration menu
    Copy the full SHA
    a2387ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80698ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    af374ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d8afe40 View commit details
    Browse the repository at this point in the history
  5. [ROCM] fix some unittests (#32129)

    * [ROCM] fix test_gru_rnn_op
    
    * [ROCM] fix test_expand_op
    
    * [ROCM] fix test_cross_entropy_loss
    
    * [ROCM] fix test_conv_nn_grad
    
    * [ROCM] fix test_bilinear_tensor_product_op
    
    * [ROCM] fix elementwise_op_function
    
    * [ROCM] fix test_lstm_cudnn_op
    
    * [ROCM] fix test_gpu_package_without_gpu_device
    
    * [ROCM] fix test_gru_unit_op
    
    * [ROCM] fix test_imperative_optimizer
    
    * [ROCM] fix rnn
    
    * [ROCM] fix group_norm_op
    
    * [ROCM] fix test_pool3d_api
    
    * [ROCM] fix test_pool3d_op
    ronny1996 authored Apr 12, 2021
    Configuration menu
    Copy the full SHA
    bd2a4e2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bb3b790 View commit details
    Browse the repository at this point in the history
  7. Optimize the process of obtaining prec_list on windows (#32123)

    * test,test,notest,test=windows_ci
    
    * test,notest,test=windows_ci
    
    * test,notest,test=windows_ci
    
    * test,notest,test=windows_ci
    
    * remove test code
    
    * delete some unnecessary logs
    
    * fix format error
    
    * turn on added ut check on windows
    XieYunshen authored Apr 12, 2021
    Configuration menu
    Copy the full SHA
    8dacfb5 View commit details
    Browse the repository at this point in the history