File: CudaTestForceField.cpp

package info (click to toggle)
sofa-framework 1.0~beta4-11
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 88,820 kB
  • ctags: 27,300
  • sloc: cpp: 151,126; ansic: 2,387; xml: 581; sh: 417; makefile: 68
file content (153 lines) | stat: -rw-r--r-- 5,652 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/******************************************************************************
*       SOFA, Simulation Open-Framework Architecture, version 1.0 beta 4      *
*                (c) 2006-2009 MGH, INRIA, USTL, UJF, CNRS                    *
*                                                                             *
* This library is free software; you can redistribute it and/or modify it     *
* under the terms of the GNU Lesser General Public License as published by    *
* the Free Software Foundation; either version 2.1 of the License, or (at     *
* your option) any later version.                                             *
*                                                                             *
* This library is distributed in the hope that it will be useful, but WITHOUT *
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       *
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License *
* for more details.                                                           *
*                                                                             *
* You should have received a copy of the GNU Lesser General Public License    *
* along with this library; if not, write to the Free Software Foundation,     *
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.          *
*******************************************************************************
*                               SOFA :: Modules                               *
*                                                                             *
* Authors: The SOFA Team and external contributors (see Authors.txt)          *
*                                                                             *
* Contact information: contact@sofa-framework.org                             *
******************************************************************************/
#include "CudaTestForceField.h"
#include <sofa/core/componentmodel/behavior/ForceField.inl>
#include <sofa/core/ObjectFactory.h>

namespace sofa
{

namespace gpu
{

namespace cuda
{

SOFA_DECL_CLASS(CudaTestForceField)

int CudaTestForceFieldCudaClass = core::RegisterObject("GPU-side test forcefield using CUDA")
.add< CudaTestForceField >()
;

extern "C"
{
void CudaTestForceField3f_addForce(unsigned int nbElem, unsigned int nbVertex, unsigned int nbElemPerVertex, const void* elems, void* state, const void* velems, void* f, const void* x, const void* v);
void CudaTestForceField3f_addDForce(unsigned int nbElem, unsigned int nbVertex, unsigned int nbElemPerVertex, const void* elems, void* state, const void* velems, void* df, const void* dx);
}

CudaTestForceField::CudaTestForceField()
: nbVertex(0), nbElementPerVertex(0)
{
}

void CudaTestForceField::init()
{
    core::componentmodel::behavior::ForceField<CudaVec3fTypes>::init();
    reinit();
}

void CudaTestForceField::reinit()
{
    sofa::core::componentmodel::topology::BaseMeshTopology* topology = getContext()->get<sofa::core::componentmodel::topology::BaseMeshTopology>();
#ifdef SOFA_NEW_HEXA 
    if (topology==NULL || topology->getNbHexas()==0)
#else
    if (topology==NULL || topology->getNbCubes()==0)
#endif    
    {
      serr << "ERROR(CudaTestForceField): no elements found.\n";
	return;
    }
#ifdef SOFA_NEW_HEXA    
    const VecElement& inputElems = topology->getHexas();
#else
    const VecElement& inputElems = topology->getCubes();
#endif
    std::map<int,int> nelems; // number of elements attached to each node
    for (unsigned int i=0;i<inputElems.size();i++)
    {
        const Element& e = inputElems[i];
        for (unsigned int j=0;j<e.size();j++)
            ++nelems[e[j]];
    }
    int nmax = 0;
    for (std::map<int,int>::const_iterator it = nelems.begin(); it != nelems.end(); ++it)
        if (it->second > nmax)
            nmax = it->second;
    int nbv = 0;
    if (!nelems.empty())
    {
        nbv = nelems.rbegin()->first + 1;
    }
    sout << "CudaTestForceField: "<<inputElems.size()<<" elements, "<<nbv<<" nodes, max "<<nmax<<" elements per node."<<sendl;
    init(inputElems.size(), nbv, nmax);
    sout << "CudaTestForceField: precomputations..."<<sendl;
    const VecCoord&x = *this->mstate->getX();
    nelems.clear();
    for (unsigned int i=0;i<inputElems.size();i++)
    {
        const Element& e = inputElems[i];
	//computeMaterialStiffness(i,e);
	Coord center;
	center = x[e[0]];
	for (unsigned int j=1;j<e.size();++j)
	    center += x[e[1]];
	center /= e.size();
	float r = 0;
	for (unsigned int j=0;j<e.size();++j)
	    r += (x[e[j]]-center).norm();
	r /= e.size();
	sout << "E["<<i<<"]: center="<<center<<" r="<<r<<sendl;
        setE(i, e, 1, r, 10, 10);
        for (unsigned int j=0;j<e.size();j++)
            setV(e[j], nelems[e[j]]++, i*e.size()+j);
    }
    sout << "CudaTestForceField::reinit() DONE."<<sendl;
}

void CudaTestForceField::addForce (VecDeriv& f, const VecCoord& x, const VecDeriv& v)
{
    f.resize(x.size());
    CudaTestForceField3f_addForce(
        elems.size(),
        nbVertex,
        nbElementPerVertex,
        elems.deviceRead(),
        state.deviceWrite(),
        velems.deviceRead(),
        f.deviceWrite(),
        x.deviceRead(),
        v.deviceRead());
}

void CudaTestForceField::addDForce (VecDeriv& df, const VecDeriv& dx)
{
    df.resize(dx.size());
    CudaTestForceField3f_addDForce(
        elems.size(),
        nbVertex,
        nbElementPerVertex,
        elems.deviceRead(),
        state.deviceWrite(),
        velems.deviceRead(),
        df.deviceWrite(),
        dx.deviceRead());
}

} // namespace cuda

} // namespace gpu

} // namespace sofa