-
Notifications
You must be signed in to change notification settings - Fork 15
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
Assistance Required for generating, configuring, and building the Homo3D Project #8
Comments
Please provide more information, e.g., the platfrom, compiler version, cuda version and error message so that I can reproduce it. |
Thank you for your prompt response. I appreciate your willingness to assist me with the issues I am facing. I have attached a detailed log file (error.txt) which includes all the errors encountered during the build process. Below is the detailed information you requested: I hope this information helps in reproducing the issues and identifying the cause. Any guidance or recommendations you can provide to resolve these issues would be greatly appreciated. |
It seems that cmake finds tbb from your oneAPI package, not from the conda environment. One possible workaround is manually open the generated msvc project and append the path of 'tbb12.lib' to the Additional Library Directories item. |
I hope this message finds you well. thank you so much for your response. If you are available to provide any guidance or tips, it would greatly expedite our efforts and help us ensure accuracy in our extraction process. because this is a part of our project. Of course, we are happy to acknowledge your assistance in any resulting publications or contributions. Thank you very much for your time, and we look forward to the possibility of working with you on this endeavor. |
Could you try this? Homogenization domain(config);
Tensor<float> rho; // Or other tensor expression
// set value in density field
/// from openVdb
rho.fromVdb("yourVdbFile");
/// Or from your host data (a 3D array in lexicographical order)
rho.fromHost(hostArray); // "std::vector<float> hostArray;"
domain.update(rho.data(), rho.view().getPitchT());
float C[6][6] ; // elastic matrix
domain.elasticMatrix(C);
This segment is mostly extracted from For your question:
See if it works and please let me know if you have other questions. |
I hope this message finds you well. I want to express my appreciation for your response. I have reviewed the code and documentation but would greatly benefit from your insights on a few specific areas. Could you provide a list of the minimum required files and dependencies specifically for the homogenization process? Does the Homogenization class rely on any major components outside the homogenization folder, such as methods in AutoDiff or global configurations? Could you explain about the usage of the files in homogenization folder? Could you provide additional details on how the Tensor object should be structured and initialized for the homogenization process? Specifically, are there any constraints or requirements for the fromHost or fromVdb functions when setting up the density field ? What are the key configuration parameters within config used by the Homogenization class? |
I hope this message finds you well.
I am currently working with your open-source project, Homo3D. I appreciate the effort and dedication you have put into creating this valuable tool for solving inverse homogenization problems. However, I have encountered several challenges during the process of generating, configuring, and building the project. I initially used the Ninja builder and Visual Studio compiler, which resulted in successful generation and configuration, but numerous build errors occurred. I Attempted different combinations of compilers and builders (Ninja, Unix Makefiles, Visual Studio, GNU) but several error happened in generating and configuring. When attempting to use Unix Makefiles and other c and c++ compiler, I encountered the error with detecting CUDA compiler ABI info in generation. Despite these efforts, I have been unable to successfully build the project. I would greatly appreciate any guidance or recommendations you can provide to resolve these issues.Thank you for your time and assistance. I look forward to your response.
Best regards,
The text was updated successfully, but these errors were encountered: