We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Something like (this doesn't work as is)
function parameter_int(name, value::Int) param_ref = Ref(LibScoreP.SCOREP_USER_INVALID_PARAMETER) LibScoreP.SCOREP_User_ParameterInt64(param_ref, name, value) return nothing end function parameter_uint(name, value::UInt) param_ref = Ref(LibScoreP.SCOREP_USER_INVALID_PARAMETER) LibScoreP.SCOREP_User_ParameterUint64(param_ref, name, value) return nothing end function parameter_string(name, value::AbstractString) param_ref = Ref(LibScoreP.SCOREP_USER_INVALID_PARAMETER) LibScoreP.SCOREP_User_ParameterString(param_ref, name, value) return nothing end
Be wary of of score-p/scorep_binding_python#146.
The text was updated successfully, but these errors were encountered:
recording and parameter functions (#5)
f151c91
TODO:
Sorry, something went wrong.
No branches or pull requests
Something like (this doesn't work as is)
Be wary of of score-p/scorep_binding_python#146.
The text was updated successfully, but these errors were encountered: