Jan Vesely
Jan Vesely
The current behaviour is to return the last result of multiple iterations. This makes testing stateful functions difficult. For example: ``` import pytest class foo(): def __init__(self): self.x = 0...
Use gtk3-fied source archive (gtkwave-gtk3). Add gtk3 useflag to select between gtk2 and gtk3. Drop no longer supported configure options (and fatlines useflag). Closes: https://bugs.gentoo.org/856829 Bug: https://bugs.gentoo.org/856829 Signed-off-by: Jan Vesely
simple reproducer: ``` from llvmlite import ir fp = ir.DoubleType() #fp = ir.FloatType() #fp = ir.HalfType() fnty = ir.FunctionType(fp, ()) module = ir.Module(name=__file__) func = ir.Function(module, fnty, name="fpadd") block =...
a simple example is fp conversion from fp64 to fp16: ``` fnty = ir.FunctionType(int16, (double,)) module = ir.Module(name=__file__) func = ir.Function(module, fnty, name="fptest") block = func.append_basic_block(name="entry") builder = ir.IRBuilder(block) a,...
Do not check for string values of numpy errors. Refactor exception handling to check only calls to 'execute'.
PR #2474 adds a simple leak detection on compiled tests; the code generator maintains a cache for every compiled PNL component. This cache uses WeakKeyDictionary so when the components get...
PRs that don't change any code report changes in coverage (e.g. https://github.com/PrincetonUniversity/PsyNeuLink/pull/2026#issuecomment-826571220)
Current status: Mechanism: - [x] `RESULT` - [x] `MECHANISM_VALUE` - [x] `OWNER_VALUE` ProcessingMechanism: - [x] `MAX_ONE_HOT` - [x] `MAX_INDICATOR` - [x] `MAX_ABS_INDICATOR` - [ ] `MEAN` - [ ] `MEDIAN`...
All projections expose `weight` and `exponent` parameters. Although there is code processing the parameters, the values are never used during computation. Simple testing using `MappingProjection` gives the same result for...