Author: ghuck
Date: 2009-06-11 07:15:29 -0700 (Thu, 11 Jun 2009)
New Revision: 16923
Modified:
csplugins/trunk/soc/ghuck/gpuGraphDrawing/common.h
csplugins/trunk/soc/ghuck/gpuGraphDrawing/complex.h
csplugins/trunk/soc/ghuck/gpuGraphDrawing/complexDevice.h
csplugins/trunk/soc/ghuck/gpuGraphDrawing/grap.cu
csplugins/trunk/soc/ghuck/gpuGraphDrawing/graph.h
csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.cu
csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.h
csplugins/trunk/soc/ghuck/gpuGraphDrawing/kernel.cu
csplugins/trunk/soc/ghuck/gpuGraphDrawing/partition.cu
csplugins/trunk/soc/ghuck/gpuGraphDrawing/pkdNode.cu
csplugins/trunk/soc/ghuck/gpuGraphDrawing/readFile.cu
csplugins/trunk/soc/ghuck/gpuGraphDrawing/simpleCUDPP.cu
csplugins/trunk/soc/ghuck/gpuGraphDrawing/writeOutput.cu
Log:
Added Licence and Copyright notices in all files
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/common.h
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/common.h 2009-06-11 13:52:35 UTC
(rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/common.h 2009-06-11 14:15:29 UTC
(rev 16923)
@@ -1,3 +1,16 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
#ifndef __COMMON_H__
#define __COMMON_H__
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/complex.h
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/complex.h 2009-06-11 13:52:35 UTC
(rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/complex.h 2009-06-11 14:15:29 UTC
(rev 16923)
@@ -1,3 +1,15 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
#ifndef COMPLEX_H
#define COMPLEX_H
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/complexDevice.h
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/complexDevice.h 2009-06-11
13:52:35 UTC (rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/complexDevice.h 2009-06-11
14:15:29 UTC (rev 16923)
@@ -1,3 +1,16 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
#ifndef COMPLEX_DEVICE_H
#define COMPLEX_DEVICE_H
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/grap.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/grap.cu 2009-06-11 13:52:35 UTC
(rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/grap.cu 2009-06-11 14:15:29 UTC
(rev 16923)
@@ -1,3 +1,16 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
#include "graph.h"
#include <stdlib.h>
#include <cmath>
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/graph.h
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/graph.h 2009-06-11 13:52:35 UTC
(rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/graph.h 2009-06-11 14:15:29 UTC
(rev 16923)
@@ -1,3 +1,16 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
#ifndef GRAPH_H
#define GRAPH_H
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.cu 2009-06-11 13:52:35 UTC
(rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.cu 2009-06-11 14:15:29 UTC
(rev 16923)
@@ -1,6 +1,17 @@
-#include "licence.h"
-#include "copyright.h"
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
+
#include "kdNode.h"
#include "partition.cu"
#include "cudpp.h"
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.h
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.h 2009-06-11 13:52:35 UTC
(rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/kdNode.h 2009-06-11 14:15:29 UTC
(rev 16923)
@@ -1,3 +1,17 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
+
#ifndef __KD_NODE_H__
#define __KD_NODE_H__
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/kernel.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/kernel.cu 2009-06-11 13:52:35 UTC
(rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/kernel.cu 2009-06-11 14:15:29 UTC
(rev 16923)
@@ -1,3 +1,17 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
+
#ifndef _HELLOWORLD_H_
#define _HELLOWORLD_H_
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/partition.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/partition.cu 2009-06-11
13:52:35 UTC (rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/partition.cu 2009-06-11
14:15:29 UTC (rev 16923)
@@ -1,3 +1,17 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
+
__device__ void setFlagBit(unsigned int * cmpflags, const float3 * idata,
unsigned int bit,int axis)
{
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/pkdNode.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/pkdNode.cu 2009-06-11
13:52:35 UTC (rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/pkdNode.cu 2009-06-11
14:15:29 UTC (rev 16923)
@@ -1,3 +1,17 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
+
#include "kdNode.h"
#include "cudpp.h"
#include "complexDevice.h"
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/readFile.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/readFile.cu 2009-06-11
13:52:35 UTC (rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/readFile.cu 2009-06-11
14:15:29 UTC (rev 16923)
@@ -1,3 +1,17 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
+
void error(const char * p, const char * p2="")
{
printf("%s %s\n",p,p2);
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/simpleCUDPP.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/simpleCUDPP.cu 2009-06-11
13:52:35 UTC (rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/simpleCUDPP.cu 2009-06-11
14:15:29 UTC (rev 16923)
@@ -1,3 +1,11 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
#include "licence.h"
#include "copyright.h"
Modified: csplugins/trunk/soc/ghuck/gpuGraphDrawing/writeOutput.cu
===================================================================
--- csplugins/trunk/soc/ghuck/gpuGraphDrawing/writeOutput.cu 2009-06-11
13:52:35 UTC (rev 16922)
+++ csplugins/trunk/soc/ghuck/gpuGraphDrawing/writeOutput.cu 2009-06-11
14:15:29 UTC (rev 16923)
@@ -1,3 +1,17 @@
+/**************************************************************************************
+This code is released under GNU GENERAL PUBLIC LICENSE, Version 3, 29 June
2007.
+Copyright (C) Apeksha Godiyal, 2008
+Copyright (C) Gerardo Huck, 2009
+
+See licence.h and copyright.h for more information.
+**************************************************************************************/
+
+#include "licence.h"
+#include "copyright.h"
+
+
+
+
void writeOutput(graph * g){
float zero = 0;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en
-~----------~----~----~----~------~----~------~--~---