-
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
C Library #89
Merged
Merged
C Library #89
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bug: cannot compile with -Dxxx, which is now libyt only compiles to interactive mode.
I know it is a bad practice to use singleton. What I'm trying to do is to make libyt a C-library and hide libyt internal data from users with minimal changes to code. I have plans to refactor libyt, so that it is easier to add more stuff. ()
There are some bugs in CMakeLists.txt, but at least CLion recognize my project file. Will come back to fix this in this PR.
… LibytProcessControl singleton. Hide libyt internal data away from user with minimal changes in source code. They are now inside LibytProcessControl singleton.
Fix the bug of not including string.h header in example.cpp, since I have removed string.h header out of yt_type_particle.h.
Since yt_macro.h is part of libyt API, but we don't need these two functions. It is for internal libyt usage.
Though I updated cmake and it worked on my machine, I think it is not ready to merge to main, since I still cannot make it to use mpicxx or specify g++ compiler. Some designed mpicxx compiler for specific CPUs or HPC systems may crash, even though I haven't tested yet.
…ON macro.. Set version in libyt_info["version"], and other info.
blablabla about replacing node12 with node16.
cindytsai
added
bug
Something isn't working
doc
Improvements or additions to documentation
enhancement
New feature or request
new-feature
New feature.
labels
Sep 11, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Something isn't working
doc
Improvements or additions to documentation
enhancement
New feature or request
new-feature
New feature.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
C Library
libyt
a C library. It is now compatible both in C and C++.libyt
defined struct now contains only constructor.libyt
data away from user, and useLibytProcessControl
(Singleton) to keep track of the data.libyt_initialized
,param_yt_set
... are all moved to this class.field_list
,particle_list
,grids_local
,num_grids_local_MPI
originally underyt_param_yt
are also moved to this class.libyt.libyt_info
dict to libyt Python module. It keeps libyt info:libyt_info["version"]
: a tuple with version(major, minor, micro)
INSTALL_PREFIX
to installlibyt
to somewhere else.Fix Bug
Update Doc
activesupport
,nokogiri
.GitHub Action
libyt
can successfully installed toINSTALL_PREFIX
.