I could not find anywhere else on this forum that fits my question better. If you know another place i should post my question. Please let me know. Thanks.
Description:
I am using CG to do some image processing kind of work. I notice the following. When I send a matrix to the texture memory and then use the CG code to do nothing buy shifting the matrix and return that value, I notice it does not always do that correctly. This does not occur if matrix is small, e.g. 50x50 by become very frequent if the matrix is relative big, e.g. 20x4438.
My shading language version is 1.20 Nvidia via Cg compiler.
My renderer is GeForce 8800 GTX/PCI/SSE2
Memory: 736 MB
test code in [url=“http://commnet.ece.northwestern.edu/~jqchen/tmp/testcg.rar”]http://commnet.ece.northwestern.edu/~jqchen/tmp/testcg.rar[/url]
I have attached the following files
- testcg.cpp - the main function
- testcg.cg - the test cg script
- datain.txt - the example datain that shows the problem. It contains random numbers and I compute the difference between the shifted output of the CG program and the known ground truth (excluding the last tens of columns to avoid difference in padding for out of range data).
- hearder and lib files for compiling.
notes:1. the program can also take data format in mat (matlab mat file). In that case you just need to turn flat ‘‘usetxt’’ to 0.
2. If you do not have the required including files and head file simply keep usetxt being 1 and removing
#include “mat.h” and
function readmat() - the last function in the cpp file.
3. once you build the code, type cmd -u to see how to use it.
There are two things you can experiment
- send data to texture just once, then keep read the data out, 2. keep send the same data to texture, read it out, then clear the texture, then redo the whole procedure.
In both case, you see the problem, while the first case shows more randomly like difference with the 2nd, the output seems to converge to a dataout with each row being same values.
Choose between two cases with flag " reloading"
The program force two case to run a couple of hundreds of times (600 e.g). The program prints the difference on the screen (any value other than zero signal problem). The program will stop when a difference is detected. and save current output to a dataout.txt
Please help.