Skip to content

Commit

Permalink
modify test_imperative_using_non_zero_gpu from use two gpus to one gpu (
Browse files Browse the repository at this point in the history
PaddlePaddle#27348)

* add op_function_generator.exe retry in windows, test=develop

* modify test_imperative_using_non_zero_gpu from use two gpus to one gpu, test=develop
  • Loading branch information
wanghuancoder authored Sep 17, 2020
1 parent ebc6d54 commit bf8e030
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion python/paddle/fluid/tests/unittests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ endif()
set_tests_properties(test_parallel_executor_test_while_train test_parallel_executor_mnist
test_parallel_executor_feed_persistable_var
test_buffer_shared_memory_reuse_pass_and_fuse_optimization_op_pass
test_data_norm_op test_imperative_using_non_zero_gpu
test_data_norm_op
test_dataloader_keep_order
test_dataloader_unkeep_order
test_parallel_executor_fetch_isolated_var
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
class TestImperativeUsingNonZeroGpu(unittest.TestCase):
def run_main(self, np_arr, place):
with guard(place):
embedding = Embedding(size=[10, 10])
var = to_variable(np_arr)
self.assertTrue(np.array_equal(np_arr, var.numpy()))

Expand All @@ -30,7 +29,6 @@ def test_non_zero_gpu(self):
return

np_arr = np.random.random([11, 13]).astype('float32')
self.run_main(np_arr, fluid.CUDAPlace(1))
self.run_main(np_arr, fluid.CUDAPlace(0))


Expand Down

0 comments on commit bf8e030

Please sign in to comment.