- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I have two structure defined as -
typedef struct VECTOR_o {
int x;
int z;
} VECTOR_o;
typedef struct SHOT_INFO_o {
int **recvs;
VECTOR_o shot_location;
VECTOR_o first_receiver;
float *offset;
} SHOT_INFO_o;
A variable of SHOT_INFO_o *shot.
All required memory for shot and shot.recvs has been assigned. I want to send this structure to MIC, i am using "in" directive but it is saying "variable "shot" used in this offload region is not bitwise copyable" while compiling.
Please help me to resolve the issue.
Regards,
Abhishek
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
your search engine should be your friend. There's a section about this in
http://software.intel.com/en-us/articles/effective-use-of-the-intel-compilers-offload-features
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
TimP (Intel) wrote:
your search engine should be your friend. There's a section about this in
http://software.intel.com/en-us/articles/effective-use-of-the-intel-comp...
Thanks Tim it was of great help.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page