-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Add RConfigure preprocessor flag for pymva and rmva (R__HAS_PYMVA) and (R__HAS_RMVA) #5630
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
Add RConfigure preprocessor flag for pymva and rmva (R__HAS_PYMVA) and (R__HAS_RMVA) #5630
Conversation
|
Starting build on |
|
Build failed on ROOT-performance-centos7-multicore/default. Errors:
Failing tests: |
stwunsch
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! I think you use the wrong preprocessor variable in the RNN tutorial, please check! Also I would change the commit message of your second commit because it mixes RMVA in the title and PyMVA in the detailed description.
|
|
||
| const char *rnn_type = "RNN"; | ||
|
|
||
| #ifdef R__HAS_RMVA |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That should by R__HAS_PYMVA, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes sure ! Thanks
593e1a2 to
e6119ae
Compare
|
Starting build on |
…d (R__HAS_RMVA) (root-project#5630) * Add preprocessor flag in RConfigure.h for pymva and rmva * Enable RMVA when R is found and tmva is on * Update CNN and RNN tutorial to work also when ROOT is built without Pymva
Add R__HAS_PYMVA and R__HAS_RMVA in RConfigure.h
Use it in the CNN and RNN tutorials to be able to run them when pymva is not built.
This PR should replace #5559