https://github.com/vitay/ANNarchy
Raw File
Tip revision: 2811ccde8b9d42b83950f0b532e24596cf4282bd authored by Julien Vitay on 05 May 2022, 11:45:27 UTC
Release 4.7.1.3
Tip revision: 2811ccd
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