Skip to content

Commit

Permalink
reducing the size of objects created for the global scheduler test (r…
Browse files Browse the repository at this point in the history
  • Loading branch information
atumanov authored and robertnishihara committed Jun 15, 2017
1 parent 8798f4e commit 8317025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/ray/global_scheduler/test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ def integration_many_tasks_helper(self, timesync=True):
num_tasks = 1000
for _ in range(num_tasks):
# Create a new object for each task.
data_size = np.random.randint(1 << 20)
metadata_size = np.random.randint(1 << 10)
data_size = np.random.randint(1 << 12)
metadata_size = np.random.randint(1 << 9)
plasma_client = self.plasma_clients[0]
object_dep, memory_buffer, metadata = create_object(plasma_client,
data_size,
Expand Down

0 comments on commit 8317025

Please sign in to comment.