https://github.com/vitay/ANNarchy
Raw File
Tip revision: 16ab4d603887a830b80fad793204510ca5094c0a authored by Julien Vitay on 19 January 2022, 09:07:18 UTC
Release 4.7.0.2.
Tip revision: 16ab4d6
test_CUDA.py
"""

    test_GPU.py

    This file is part of ANNarchy.

    Copyright (C) 2013-2016 Joseph Gussev <joseph.gussev@s2012.tu-chemnitz.de>,
    Helge Uelo Dinkelbach <helge.dinkelbach@gmail.com>,
    Julien Vitay <julien.vitay@informatik.tu-chemnitz.de>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    ANNarchy 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 General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
from ANNarchy import *
setup(paradigm="cuda")

from Unittests import *
import unittest

if __name__ == '__main__':
    unittest.main(verbosity=2)
back to top