-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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
endBe wary of of score-p/scorep_binding_python#146.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request