About Store Forum Documentation Contact



Post Reply 
Bug ?
Author Message
Grabonito Offline
Member

Post: #1
Bug ?
I have updated the engine and the problem

[Image: errorxk.png]


Why do I have such an error ?

First-chance exception at 0x75f6b727 in Onin.exe: Microsoft C++ exception: cudaError_enum at memory location 0x0a8ff7cc..

Graphics Card: GTX 670
(This post was last modified: 12-10-2012 12:45 PM by Grabonito.)
12-10-2012 11:37 AM
Find all posts by this user Quote this message in a reply
Grabonito Offline
Member

Post: #2
RE: Bug ?
Someone realizes what the problem is, I'm stuck and I can not do..
12-10-2012 04:07 PM
Find all posts by this user Quote this message in a reply
Ogniok Offline
Member

Post: #3
RE: Bug ?
This error mean that somewhere in the code you're accesing element that not exist.

For expamle:
Code:
Memb<Int> sth;

REP(3) sth.New(0);

Int x = sth[3]; //That line gives an error because sth has only 3 elements
12-10-2012 04:12 PM
Find all posts by this user Quote this message in a reply
Grabonito Offline
Member

Post: #4
RE: Bug ?
Before the update I had no error.
Now I have to check the code wink

Tutorials build correctly
12-10-2012 05:00 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #5
RE: Bug ?
You should use debugging, and see at which line of code the error occurs, check the call stack
12-11-2012 01:43 PM
Find all posts by this user Quote this message in a reply
Post Reply