We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 329a982 + 6652eb6 commit 98547d1Copy full SHA for 98547d1
src/measure/extrapolation.cu
@@ -157,7 +157,8 @@ void Extrapolation::load_asi()
157
type_of_atom,
158
shape1,
159
shape2);
160
- asi_list.emplace_back(std::make_unique<GPU_Vector<double>>(B_size, Memory_Type::managed));
+ asi_list.emplace_back(
161
+ std::unique_ptr<GPU_Vector<double>>(new GPU_Vector<double>(B_size, Memory_Type::managed)));
162
auto& asi = asi_list.back();
163
for (int i = 0; i < B_size; ++i) {
164
f >> (*asi)[i];
0 commit comments