Skip to content

Commit

Permalink
Merge pull request #315 from QMCSoftware/Purdue2023Talk
Browse files Browse the repository at this point in the history
Purdue2023 talk
  • Loading branch information
alegresor committed Mar 13, 2023
2 parents 636c266 + 0e85090 commit 8bea36e
Show file tree
Hide file tree
Showing 3 changed files with 1,274 additions and 1 deletion.
554 changes: 554 additions & 0 deletions demos/talk_paper_demos/MCQMC2022_Article_Figures.ipynb

Large diffs are not rendered by default.

719 changes: 719 additions & 0 deletions demos/talk_paper_demos/Purdue_Talk_Figures.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion qmcpy/integrand/um_bridge_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def g(self, t, **kwargs):
y = zeros((n,self.d_indv[0]),dtype=float)
for i in range(n):
ti_ll = [t[i,self.d_in_umbridge[j]:self.d_in_umbridge[j+1]].tolist() for j in range(self.n_d_in_umbridge)]
yi_ll = self.model(ti_ll,self.config)
yi_ll = self.model.__call__(ti_ll,self.config)
for j,yi_l in enumerate(yi_ll): y[i,self.d_out_umbridge[j]:self.d_out_umbridge[j+1]] = yi_l if len(yi_l)>1 else yi_l[0]
return y

Expand Down

0 comments on commit 8bea36e

Please sign in to comment.