Skip to content
Snippets Groups Projects
Commit a713d343 authored by Dan Vonk's avatar Dan Vonk Committed by Daniel Vonk
Browse files

Remove unused member in CUDA self scatter

parent b3ee28cc
No related branches found
No related tags found
2 merge requests!19Merge develop into main,!17Add CUDA backend
......@@ -39,7 +39,6 @@ SelfVectorsCUDAScatterDevice::SelfVectorsCUDAScatterDevice(
std::move(vectors), NAF, std::move(fileservice_endpoint),
std::move(monitorservice_endpoint))
, assignment_(partitioncomm_.size(), partitioncomm_.rank(), NAF)
, sflow_("self-vectors-cuda-scatter-flow")
{
atfinal_ = nullptr;
......@@ -55,6 +54,9 @@ SelfVectorsCUDAScatterDevice::SelfVectorsCUDAScatterDevice(
max_threads_per_block_ = p.maxThreadsPerBlock;
max_threads_per_sm_ = p.maxThreadsPerMultiProcessor;
num_sm_ = p.multiProcessorCount;
} else {
sass::err(
"Could not enumerate CUDA device properties. All parameter estimates will be wrong.");
}
}
......
......@@ -64,9 +64,6 @@ protected:
size_t coord_size_ = 0;
tf::Taskflow sflow_;
// calculate amplitudes for a given q and atom for all frames
fftw_complex *scatter(size_t qindex, size_t aindex);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment