[clfft] 75/107: updating incorrect tmpbufsize
Ghislain Vaillant
ghisvail-guest at moszumanska.debian.org
Thu Jul 30 18:06:38 UTC 2015
This is an automated email from the git hooks/post-receive script.
ghisvail-guest pushed a commit to branch master
in repository clfft.
commit a9fbc3067d2e12048d9a47c2c5322946bbc95f2d
Author: bragadeesh <bragadeesh.natarajan at amd>
Date: Tue Apr 14 18:08:58 2015 -0500
updating incorrect tmpbufsize
---
src/library/plan.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/library/plan.cpp b/src/library/plan.cpp
index 8f01aac..5754f14 100644
--- a/src/library/plan.cpp
+++ b/src/library/plan.cpp
@@ -1834,7 +1834,7 @@ clfftStatus clfftBakePlan( clfftPlanHandle plHandle, cl_uint numQueues, cl_comma
rowPlan->precision = fftPlan->precision;
rowPlan->forwardScale = 1.0f;
rowPlan->backwardScale = 1.0f;
- rowPlan->tmpBufSize = fftPlan->tmpBufSize;
+ rowPlan->tmpBufSize = 0;
rowPlan->gen = fftPlan->gen;
rowPlan->envelope = fftPlan->envelope;
@@ -1898,7 +1898,7 @@ clfftStatus clfftBakePlan( clfftPlanHandle plHandle, cl_uint numQueues, cl_comma
trans1Plan->placeness = CLFFT_OUTOFPLACE;
trans1Plan->precision = fftPlan->precision;
- trans1Plan->tmpBufSize = fftPlan->tmpBufSize;
+ trans1Plan->tmpBufSize = 0;
trans1Plan->batchsize = fftPlan->batchsize;
trans1Plan->envelope = fftPlan->envelope;
trans1Plan->forwardScale = 1.0f;
@@ -1950,7 +1950,7 @@ clfftStatus clfftBakePlan( clfftPlanHandle plHandle, cl_uint numQueues, cl_comma
colPlan->precision = fftPlan->precision;
colPlan->forwardScale = fftPlan->forwardScale;
colPlan->backwardScale = fftPlan->backwardScale;
- colPlan->tmpBufSize = fftPlan->tmpBufSize;
+ colPlan->tmpBufSize = 0;
colPlan->gen = fftPlan->gen;
colPlan->envelope = fftPlan->envelope;
@@ -2013,7 +2013,7 @@ clfftStatus clfftBakePlan( clfftPlanHandle plHandle, cl_uint numQueues, cl_comma
trans2Plan->placeness = CLFFT_OUTOFPLACE;
trans2Plan->precision = fftPlan->precision;
- trans2Plan->tmpBufSize = fftPlan->tmpBufSize;
+ trans2Plan->tmpBufSize = 0;
trans2Plan->batchsize = fftPlan->batchsize;
trans2Plan->envelope = fftPlan->envelope;
trans2Plan->forwardScale = 1.0f;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/clfft.git
More information about the debian-science-commits
mailing list