We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72df4aa commit 4652aa5Copy full SHA for 4652aa5
1 file changed
spynnaker/pyNN/models/neuron/population_vertex.py
@@ -523,6 +523,10 @@ def combined_binary_exists(self) -> bool:
523
524
:rtype: bool
525
"""
526
+ # If we are in virtual machine mode, we can work without binaries
527
+ # so easier to assume they exist
528
+ if SpynnakerDataView().is_virtual_machine_mode():
529
+ return True
530
try:
531
SpynnakerDataView().get_executable_path(
532
self.combined_binary_file_name)
@@ -537,6 +541,10 @@ def split_binaries_exist(self) -> bool:
537
541
538
542
539
543
544
545
546
547
540
548
549
550
self.neuron_core_binary_file_name)
0 commit comments