Skip to content

Commit

Permalink
fix: call to get_future_results
Browse files Browse the repository at this point in the history
  • Loading branch information
ronpandolfi committed Sep 25, 2023
1 parent 59bdf37 commit d013e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fvgp/gp2ScaleR.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def compute_covariance(self, hyperparameters,client):
futures = list(map(partial(self.submit_kernel_function, hyperparameters=hyperparameters, client=client),
batch)) # submit kernel function for each i,j in the chunk
wait(futures)
self.SparsePriorCovariance.get_future_results(futures)
self.get_future_results(futures)

# TODO: use loguru over prints
if self.info:
Expand Down

0 comments on commit d013e1f

Please sign in to comment.