- 23 3月, 2022 1 次提交
-
-
由 hong 提交于
* fix error; test=develop * update * close some yaml * fix backward attrite error; test=develop * add div test * polish code; test=develop * remove none gbk charactor; * remove some yaml; * fix optional bug * recover yaml config * resolve confilct; test=develop * close div; test=develop
-
- 23 2月, 2022 1 次提交
-
-
由 zhangbo9674 提交于
* add elementwise_div * refine rocm * refine code * refine op register * solve conflict * refine unittest * refine unittest precision * add rocm
-
- 11 1月, 2021 1 次提交
-
-
由 chentianyu03 提交于
* type promotion for grad * add type promotion for div op
-
- 22 12月, 2020 1 次提交
-
-
由 chentianyu03 提交于
* change the grad of div when complex types * fix the grads of inputs args order not match bug
-
- 10 9月, 2020 1 次提交
-
-
由 ShenLiang 提交于
-
- 24 8月, 2020 1 次提交
-
-
由 ShenLiang 提交于
* add div, floor_div, remainder
-
- 22 8月, 2020 1 次提交
-
-
由 WangXi 提交于
-
- 03 8月, 2020 1 次提交
-
-
由 WuHaobo 提交于
* test=develop,test=document_fix, remove the out args * Revert "test=develop,test=document_fix, remove the out args" This reverts commit f430799b. * test=develop,test=document_fix, remove the out args * remove all the out args * remove all the out args * test=develop, remove all the out args * test=develop, remove all the out args * test=develop, remove out args in matmul testcase * test=develop, fix the bugs of out args testcase in logsumexp * test=develop, fix the bugs of out args testcase in elementwise_add * test=develop, fix the bugs of out args testcase in elementwise_div * test=develop, fix the bugs of out args testcase in activation * test=develop, fix the bugs of out args testcase in addcmul * test=develop, fix the bugs of out args * test=develop, fix the bugs of out args in API example * test=develop, fix the bugs of out args in kron testcase * test=develop, fix the bugs of out args in kron testcase * test=develop, remove out args * test=develop, remove out args * test=develop, fix the coverage * test=develop, polish codestyle * test=develop, Update math.py * test=develop, polish codestyle * test=develop, polish codestyle * test=develop, polish codestyle * test=develop, polish codestyle * test=develop, polish the test_activation_op.py * test=develop, Update math.py * test=develop, fix the failed CI * test=develop, add core.ops * test=develop, add core.ops change clamp to clip * test=develop, add core.ops change clamp to clip * test=develop, write testcase for clamp OP
-
- 09 6月, 2020 1 次提交
-
-
由 wawltor 提交于
Fix the bug for elementwise_div op, when the first var is scalar; Use the shape 1 replace the -1 in shape.
-
- 04 4月, 2020 1 次提交
-
-
由 LutaoChu 提交于
* add new op paddle.tensor.div(x, y, out=None, name=None) * add gpu and dygraph unittests. * Performance optimization: scale op is not called when alpha=1. * op error message optimization.
-
- 03 3月, 2020 1 次提交
-
-
由 wawltor 提交于
Fix the big shape op test, elementwise_mul, elementwise_div, mul op Fix the precision op test, mul op
-
- 19 12月, 2019 1 次提交
-
-
由 juncaipeng 提交于
-
- 09 12月, 2019 1 次提交
-
-
由 Zhang Ting 提交于
* fix python API tests that do not need to inherit OpTest, test=develop * fix fp16 cases that will only be enabled in GPU mode, test=develop * remove TestSoftmaxFP16Op from test cases of softmax_mkldnn_op, test=develop * fix tests so that the cases are only created in GPU mode, test=develop
-
- 19 11月, 2019 1 次提交
-
-
由 danleifeng 提交于
-
- 20 10月, 2019 1 次提交
-
-
由 danleifeng 提交于
-
- 04 9月, 2019 1 次提交
-
-
由 danleifeng 提交于
elementwise broadcast function enhancement
-
- 26 12月, 2018 1 次提交
-
-
由 Wu Yi 提交于
* wip * wip * wip * wip for test * add fp16 tests test=develop * fix cpu build test=develop * fix test=develop * fix py3 tests test=develop * fix lr_scheduler dtype test=develop * fix test=dvelop * test fix ci compile test=develop * fix build and merge test=develop * fallback momentumop change to general test=develop * make fp16 lr schedule simple test=develop * fix ut test=develop * fix tests test=develop * remove fp16 learning rate cast test=develop
-
- 20 12月, 2018 2 次提交
-
-
由 typhoonzero 提交于
This reverts commit 3d750f9c.
-
由 Wu Yi 提交于
* wip * wip * wip * wip for test * add fp16 tests test=develop * fix cpu build test=develop * fix test=develop * fix py3 tests test=develop * fix lr_scheduler dtype test=develop * fix test=dvelop * test fix ci compile test=develop * fix build and merge test=develop * fallback momentumop change to general test=develop
-
- 15 8月, 2018 1 次提交
-
-
由 minqiyang 提交于
-
- 26 7月, 2018 2 次提交
- 24 2月, 2018 1 次提交
-
-
由 Luo Tao 提交于
-
- 13 2月, 2018 1 次提交
-
-
由 Xin Pan 提交于
Currently, our tests run with 2 GPUs, the init time is absurdly long: about 4s for each process. Currently, we run each OP test on different processes. This PR: 1. create cmake function py_test_modules which will generate the Makefile that runs a list of Python unittest module in a single Python process. 2. move all "python unittest compatible" (e.g., used the unittest package, not just a regular python file). from fluid/tests to fluid/tests/unittests. 3. cmake now will run all OP tests in fluid/tests/unittests in a single process, except the time-consuming tests, they are separated into different processes to utilize parallelism. Please make sure to use the unittest package if you put the python test file in fluid/tests/unittests 4. remove all exit(0) from fluid/tests/unittests/*.py, exit(0) is used to disable unittest, we can not do it when running all tests in a single process since it will terminate the process without running the other tests. Instead, the test is disabled in fluid/tests/unittests/CMakeLists.txt. FIXME is added for each disabled item. Please disable the unittest from fluid/tests/unittests/CMakeLists.txt, instead of adding exit(0) to the Python file, for all Python file in fluid/tests/unittests/. 5. add an option WITH_FAST_BUNDLE_TEST. When OFF, will run the unit tests in separate process so that they can be tested individually.
-
- 12 2月, 2018 1 次提交
-
-
由 qingqing01 提交于
-
- 17 1月, 2018 1 次提交
-
-
由 fengjiayi 提交于
-
- 15 1月, 2018 1 次提交
-
-
由 dzhwinter 提交于
* add copyright hook * add copyright hook * refine copyright hook * "test copyright hook" * fix check style * fix ci
-
- 14 11月, 2017 1 次提交
-
-
由 Qiao Longfei 提交于
* init commit * change some dir name
-
- 22 9月, 2017 1 次提交
-
-
由 gongweibao 提交于
Elementwise operator add/sub/mul/div
-