Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created June 27, 2018 22:30
Show Gist options
  • Save ryantm/edefc2f1a2e81412484edc2e45986e03 to your computer and use it in GitHub Desktop.
Save ryantm/edefc2f1a2e81412484edc2e45986e03 to your computer and use it in GitHub Desktop.
/nix/store/cvyi6hvgc9rvgrnp7c028xrlzbl7jzb9-simgrid-3.20
├── bin
│   ├── graphicator
│   ├── simgrid-colorizer
│   ├── simgrid_convert_TI_traces
│   ├── simgrid_update_xml
│   ├── smpicc
│   ├── smpicxx
│   ├── smpimain
│   ├── smpirun
│   └── tesh
├── include
│   ├── simgrid
│   │   ├── actor.h
│   │   ├── chrono.hpp
│   │   ├── config.h
│   │   ├── engine.h
│   │   ├── forward.h
│   │   ├── host.h
│   │   ├── instr.h
│   │   ├── kernel
│   │   │   ├── future.hpp
│   │   │   ├── resource
│   │   │   │   ├── Action.hpp
│   │   │   │   ├── Model.hpp
│   │   │   │   └── Resource.hpp
│   │   │   └── routing
│   │   │   ├── ClusterZone.hpp
│   │   │   ├── DijkstraZone.hpp
│   │   │   ├── DragonflyZone.hpp
│   │   │   ├── EmptyZone.hpp
│   │   │   ├── FatTreeZone.hpp
│   │   │   ├── FloydZone.hpp
│   │   │   ├── FullZone.hpp
│   │   │   ├── NetPoint.hpp
│   │   │   ├── NetZoneImpl.hpp
│   │   │   ├── RoutedZone.hpp
│   │   │   ├── TorusZone.hpp
│   │   │   └── VivaldiZone.hpp
│   │   ├── link.h
│   │   ├── mailbox.h
│   │   ├── modelchecker.h
│   │   ├── msg.h
│   │   ├── plugins
│   │   │   ├── dvfs.h
│   │   │   ├── energy.h
│   │   │   ├── file_system.h
│   │   │   ├── live_migration.h
│   │   │   ├── load_balancer.h
│   │   │   └── load.h
│   │   ├── s4u
│   │   │   ├── Activity.hpp
│   │   │   ├── Actor.hpp
│   │   │   ├── Comm.hpp
│   │   │   ├── ConditionVariable.hpp
│   │   │   ├── Engine.hpp
│   │   │   ├── Exec.hpp
│   │   │   ├── Host.hpp
│   │   │   ├── Link.hpp
│   │   │   ├── Mailbox.hpp
│   │   │   ├── Mutex.hpp
│   │   │   ├── NetZone.hpp
│   │   │   ├── Storage.hpp
│   │   │   └── VirtualMachine.hpp
│   │   ├── s4u.hpp
│   │   ├── simdag.h
│   │   ├── simix
│   │   │   └── blocking_simcall.hpp
│   │   ├── simix.h
│   │   ├── simix.hpp
│   │   ├── smpi
│   │   │   └── replay.hpp
│   │   ├── storage.h
│   │   ├── vm.h
│   │   └── zone.h
│   ├── simgrid_config.h
│   ├── smpi
│   │   ├── forward.hpp
│   │   ├── mpif.h
│   │   ├── mpi.h
│   │   ├── smpi_extended_traces_fortran.h
│   │   ├── smpi_extended_traces.h
│   │   ├── smpi.h
│   │   ├── smpi_helpers.h
│   │   ├── smpi_helpers_internal.h
│   │   └── smpi_main.h
│   ├── xbt
│   │   ├── asserts.h
│   │   ├── automaton.h
│   │   ├── automaton.hpp
│   │   ├── backtrace.h
│   │   ├── backtrace.hpp
│   │   ├── base.h
│   │   ├── config.h
│   │   ├── config.hpp
│   │   ├── cunit.h
│   │   ├── dict.h
│   │   ├── dynar.h
│   │   ├── exception.hpp
│   │   ├── ex.h
│   │   ├── ex.hpp
│   │   ├── Extendable.hpp
│   │   ├── file.hpp
│   │   ├── functional.hpp
│   │   ├── function_types.h
│   │   ├── future.hpp
│   │   ├── graph.h
│   │   ├── log.h
│   │   ├── log.hpp
│   │   ├── mallocator.h
│   │   ├── misc.h
│   │   ├── module.h
│   │   ├── parmap.h
│   │   ├── range.hpp
│   │   ├── replay.hpp
│   │   ├── RngStream.h
│   │   ├── signal.hpp
│   │   ├── str.h
│   │   ├── string.hpp
│   │   ├── synchro.h
│   │   ├── sysdep.h
│   │   ├── system_error.hpp
│   │   ├── utility.hpp
│   │   ├── virtu.h
│   │   ├── xbt_os_thread.h
│   │   └── xbt_os_time.h
│   └── xbt.h
├── lib
│   ├── libsimgrid.so -> libsimgrid.so.3.20
│   └── libsimgrid.so.3.20
└── share
├── doc
│   └── simgrid
│   └── html
└── man
└── man1
├── simgrid_update_xml.1.gz
├── smpicc.1.gz
├── smpicxx.1.gz
├── smpif90.1.gz
├── smpiff.1.gz
├── smpirun.1.gz
└── tesh.1.gz
19 directories, 123 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment