Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9174603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:46:52+00:00 2026-06-17T16:46:52+00:00

I know how to pass the structure from host to code, but the problem

  • 0

I know how to pass the structure from host to code, but the problem is push_back function (which is an inbuilt function for structure) not working in opencl.
I have a structure in my host like

struct MyKey
{
   int x;
   float y;
   int scale;
   MyKey(int x, float y, int scale) : x(x), y(y), scale(scale){ }
}

i created an object for this structure in host like

std :: vector<MyKey> obj;

i passed this to my kernel and i placed the structure definition there(in kernel), now when i try to call a push_back function its throwing an error.,

__kernel void test(ui32_t w, ui32_t h, constant struct MyKey* obj, i32_t thrd_size)
 {
         //toatl thread count is w*h
       i32_t i = get_global_id(0);
     if(i<thrd_size)
     {
          for (ui32_t i = 0; i < h; i++)
          {
               for (ui32_t j = 0; j < w; j++) 
                {
                    obj.push_back(MyKey(j,iw,h));
                }
          }
      }
  }

Thanks in advance..

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T16:46:53+00:00Added an answer on June 17, 2026 at 4:46 pm

    AMD has a Static C++ Kernel Language extension which supports some C++ features such as classes.

    You can find more information about it here: http://developer.amd.com/wordpress/media/2012/10/CPP_kernel_language.pdf

    From the documentation:
    Kernel code:

    Class Test
    {
        setX (int value);
        private:
        int x;
    }
    __kernel foo (__global Test* InClass, ...)
    {
        If (get_global_id(0) == 0)
        InClass->setX(5);
    }
    

    Host code:

    Class Test
    {
        setX (int value);
        private:
        int x;
    }
    MyFunc ()
    {
        tempClass = new(Test);
        ... // Some OpenCL startup code – create context, queue, etc.
        cl_mem classObj = clCreateBuffer(context, CL_USE_HOST_PTR,
        sizeof(Test),&tempClass, event);
        clEnqueueMapBuffer(...,classObj,...);
        tempClass.setX(10);
        clEnqueueUnmapBuffer(...,classObj,...); //class is passed to the Device
        clEnqueueNDRange(..., fooKernel, ...);
        clEnqueueMapBuffer(...,classObj,...); //class is passed back to the Host
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to know how to pass structures to another function and subsequently access
I know you can pass arguments through the RunWorkerAsync function call when you first
I know how to pass data from a worker thread to the main thread
I'm learning javascript. I know we can pass a function to other functions after
I know from here that I can pass an ignore option in the jQuery.validate
I try to pass a pointer of a structure which is given me as
I am curious to know about this. whenever I write a function which have
Seeking suggestions from PHP architects! I'm not terribly familiar with PHP but have taken
I have a code base that has a working widget. The basic structure of
How to call setNeedsDisplayInRect using performSelectorOnMainThread? The problem is rect. I do not know

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.