Skip to content

Commit

Permalink
modify test_imperative_using_non_zero_gpu from use two gpus to one gp…
Browse files Browse the repository at this point in the history
…u, test=develop
  • Loading branch information
wanghuancoder committed Sep 16, 2020
1 parent 2fc519d commit 952be54
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 @@ -560,7 +560,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

1 comment on commit 952be54

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🕵️ CI failures summary

🔍 Commit ID: 952be54 contains failed CI.

Please sign in to comment.