Skip to content
Snippets Groups Projects
Commit e7ec36ce authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Renderer use same GPU as integrator

parent 713b7a94
No related branches found
No related tags found
1 merge request!58Implements #68 gpu selection
Pipeline #11950 passed
......@@ -78,6 +78,7 @@ class SceneRep : public ftl::Configurable {
void debugHash();
cudaStream_t getIntegrationStream() const { return integ_stream_; }
int getCUDADevice() const { return cuda_device_; }
private:
......
......@@ -53,6 +53,9 @@ void VirtualSource::setScene(ftl::voxhash::SceneRep *scene) {
bool VirtualSource::grab() {
if (scene_) {
// Ensure this host thread is using correct GPU.
cudaSafeCall(cudaSetDevice(scene_->getCUDADevice()));
DepthCameraParams params;
params.fx = params_.fx;
params.fy = params_.fy;
......
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