-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event-based communication #4
Comments
Yes, |
I added the following line in Then, in |
Why do you need the size to be |
size of domain across one dimension * overlap at each boundary * 4 boundary PEs (at max) for every PE. |
I was going through |
Yes, the |
Another small note: I manage the formatting by using |
I made some changes to Output
|
|
I get the following error now:
Is it a problem with the Ginkgo version I have (1.0.0) ? |
I think you actually need the branch |
So the |
No, |
Yes, @tcojean is correct. You will need to checkout the |
Ok, |
How do I initialize all values of a Edit: I can initialize the matrix using get_values() after declaring it but is there a built-in function for that? |
For doing event-based communication, we need a variable called
boundary_solution
in addition tolocal_solution
as defined inschwarz_solver.hpp
. I am wondering what would be the datatype of that variable. For a 2D problem, each PE has 4 boundaries, each of which is a vector - so making it agko::matrix::Dense
is okay ?The text was updated successfully, but these errors were encountered: