-
Notifications
You must be signed in to change notification settings - Fork 70
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
[Device Global] Autodiscovery change #100
Conversation
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.
Thanks @sherry-yuan for your great work on device_global
🙂
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.
Thanks @sherry-yuan, looks good! I am still unsure about the integer types which you should be able to answer by copying what the compiler does.
b2bdd12
to
dceaee4
Compare
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.
Thanks @sherry-yuan for your patience, almost done 😅
Autodiscovery help bridge the communication between backend and runtime. The autodiscovery will contain the following information for a device global: 1. device global name 2. device global address 3. device global size The autodiscovery will be in the following format: <number of device global> <number of field in each device global> [(<name>, <address>, <size>), (...), ...]
320a167
to
b0adef7
Compare
The stringstream err_ss is only used within the function, and the contents must be assigned to err_str which is returned to the caller. This amends intel#100 Signed-off-by: Peter Colberg <peter.colberg@intel.com>
The stringstream err_ss is only used within the function, and the contents must be assigned to err_str which is returned to the caller. This amends #100 Signed-off-by: Peter Colberg <peter.colberg@intel.com>
Autodiscovery help bridge the communication between backend and runtime.
The autodiscovery will contain the following information for a device global:
The autodiscovery will be in the following format:
<number of device global> <number of field in each device global> [(<name>, <address>, <size>), (...), ...]
The autodiscovery change came from #65