aclrtcGetBinData
Applicability
Product |
Supported |
|---|---|
Atlas 350 Accelerator Card |
x |
√ |
|
√ |
|
x |
|
x |
|
x |
|
x |
Function Usage
Obtains the compiled binary data.
Prototype
1 | aclError aclrtcGetBinData(aclrtcProg prog, char *binData) |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
prog |
Input |
Handle to the runtime compiler. |
binData |
Output |
Binary data on the device after compilation. |
Returns
aclError is an int variable. For details, see RTC Error Codes.
Restrictions
None
Examples
1 2 3 | aclrtcProg prog; char binData[32] = "some bin data ..."; aclError result = aclrtcGetBinData(prog, binData); |
Parent topic: RTC