Skip to content
Snippets Groups Projects
Commit 90b156d5 authored by Prakalp Srivastava's avatar Prakalp Srivastava
Browse files

Changed name of dummy function call __visc__clear to __visc__cleanup

parent 6f3d5b23
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,7 @@ int main( int nArgs, char* arg[] ) {
pb_SwitchToTimer(&timers, pb_TimerID_NONE);
pb_PrintTimerSet(&timers);
__visc__clear();
__visc__cleanup();
pb_FreeParameters(params);
return 0;
}
......
......@@ -157,7 +157,7 @@ int main (int argc, char *argv[]) {
double GPUtime = pb_GetElapsedTime(&(timers.timers[pb_TimerID_KERNEL]));
std::cout<< "GFLOPs = " << 2.* matArow * matBcol * matAcol/GPUtime/1e9 << std::endl;
pb_PrintTimerSet(&timers);
__visc__clear();
__visc__cleanup();
pb_FreeParameters(params);
return 0;
......
......@@ -251,7 +251,7 @@ int main(int argc, char** argv) {
pb_SwitchToTimer(&timers, pb_TimerID_NONE);
pb_PrintTimerSet(&timers);
__visc__clear();
__visc__cleanup();
pb_FreeParameters(parameters);
return 0;
......
......@@ -164,7 +164,7 @@ int main(int argc, char** argv) {
pb_SwitchToTimer(&timers, pb_TimerID_NONE);
pb_PrintTimerSet(&timers);
__visc__clear();
__visc__cleanup();
pb_FreeParameters(parameters);
return 0;
......
......@@ -12,7 +12,7 @@ void __visc__attributes(...);
void __visc__wait(...);
unsigned __visc__node(...);
void __visc__init();
void __visc__clear();
void __visc__cleanup();
#endif
#include <unistd.h>
......
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