Ticket #159 (closed defect: invalid)

Opened 2 years ago

Last modified 2 years ago

Creating IF_cond_exp fails with NEST 1.9-8558

Reported by: bruederle Owned by: apdavison
Priority: major Milestone: 0.7.0
Component: nest Version: trunk
Keywords: Cc:

Description (last modified by apdavison) (diff)

When using PyNN version 0.6 with NEST version 1.9-8558, the attached script fails. Creating IF_cond_exp cell types generates the following error message:

          -- N E S T 2 beta --
         Neural Simulation Tool
 Copyright 1995-2009 The NEST Initiative
  Version 1.9-8558 Feb 24 2010 18:53:39

This program is provided AS IS and comes with
NO WARRANTY. See the file LICENSE for details.

Problems or suggestions?
 Website     : http://www.nest-initiative.org
 Mailing list: nest_user@nest-initiative.org

Type 'nest.help()' to find out more about NEST.
/usr/local/lib/python2.6/dist-packages/pyNN/random.py:25: UserWarning:
GSL random number generators not available
 warnings.warn("GSL random number generators not available")
 
 Traceback (most recent call last):
 File "failing.py", line 28, in <module>
   cells_exc = pynn.create(pynn.IF_cond_exp, if_cond_exp_params, n=numCellsExc)
 File "/usr/local/lib/python2.6/dist-packages/pyNN/common.py", line 655, in create
   all_cells, mask_local, first_id, last_id = simulator.create_cells(cellclass, cellparams, n)
 File "/usr/local/lib/python2.6/dist-packages/pyNN/nest/simulator.py", line 161, in create_cells
   raise common.InvalidModelError(errmsg)
pyNN.common.InvalidModelError: UnknownModelName in Create_l_i:
/iaf_cond_exp is not a known model name.

The failing script is identical to the one attached to Ticket #158.

Attachments

failing.py Download (0.9 KB) - added by bruederle 2 years ago.

Change History

Changed 2 years ago by bruederle

Changed 2 years ago by apdavison

  • status changed from new to closed
  • version set to trunk
  • resolution set to invalid
  • description modified (diff)

This error message appears when NEST has been compiled without the GNU Scientific Library. I have added a more informative error message (in r718), that will prompt the user to check for the GSL. The requirement to check for the GSL was included in the installation docs, at the end of the NEST installation instructions, but I have added a new sentence at the beginning to make it more prominent.

Note: See TracTickets for help on using tickets.