7
votes
3answers
2k views
CUDA: Wrapping device memory allocation in C++
Hello,
I'm starting to use CUDA at the moment and have to admit that I'm a bit disappointed with the C API. I understand the reasons for choosing C but had the language been based …
4
votes
14answers
893 views
What are uses of the C++ construct “placement new”?
I just learned about the C++ construct called "placement new". It allows you to exactly control where a pointer points to in memory. It looks like this:
#include <new> …
3
votes
11answers
260 views
How do I allocate variably-sized structures contiguously in memory?
I'm using C++, and I have the following structures:
struct ArrayOfThese {
int a;
int b;
};
struct DataPoint {
int a;
int b;
int c;
};
In memory, I want to have 1 or …
2
votes
1answer
157 views
POD class initialized with placement new default initialized?
If I initialize a POD class with placement new, can I assume that the memory will be default initialized (to zeros)? This resource clearly states that if you call the zero argument …
1
vote
2answers
91 views
Magic in placement new?
Hi, I'm playing with dynamic memory allocation "by hand" and I wanted to see how placement new is implemented by guys from MS but when debugging I "stepped into" it moved me to cod …
1
vote
5answers
85 views
Are these placement new macros correct ?
I made a couple macros to make using placement new a bit easier. I was just wondering if there were any obvious cases where these would not work. Thanks.
#define CONSTRUCT_INPLA …
1
vote
2answers
130 views
How to reset a class using placment delete/new from a template?
I have a pool manager template class. When a class object gets added back to the pool manager I would like to reset it back to it's initial state. I would like to call the placment …
1
vote
3answers
274 views
Variable sized class - C++
I've seen a class which is a class which is defined like this..
class StringChild : public StringBase
{
public:
//some non-virtual functions
static StringChild* Create …
