├── .github ├── actions │ ├── Dockerfile │ ├── action.yml │ └── entrypoint.sh └── workflows │ ├── main.yml │ └── scorecards.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE.md ├── NOTICE.md ├── README.md ├── bin └── SamplesLoader.C ├── dco ├── alexandros-tasos.md ├── dco_template.md ├── kenny-shen.md └── saleem-ahmad.md ├── demo ├── Demo.C ├── Demo.H ├── Life.C ├── demo.sh └── profileInfo.py ├── docs ├── images │ ├── cmdTopdown.png │ ├── reportHomePage.png │ ├── reportShellBenchmarkFilterPlot.png │ ├── reportShellBenchmarkHistogram.png │ ├── reportShellBenchmarkStat.png │ ├── reportShellFilter.png │ ├── reportShellFilterPlot.png │ ├── reportShellFilterStat.png │ ├── reportShellHeader.png │ ├── reportShellHistogram.png │ ├── reportShellPlot.png │ ├── reportShellPlotTxn.png │ ├── reportShellPlotTxnPmc.png │ ├── reportShellPlotTxnPmcOnCounter.png │ ├── reportShellPlotTxnPmcOnProbe.png │ ├── reportShellSnippets.png │ ├── reportShellStat.png │ ├── reportShellStatPmc.png │ ├── reportShellTxns.png │ └── reportShellTxnsPmc.png └── pkgDesc.txt ├── include └── xpedite │ ├── common │ ├── PromiseKeeper.H │ └── WaitFreeBufferPool.H │ ├── framework │ ├── Framework.H │ ├── Options.H │ ├── Persister.H │ ├── ProbeData.H │ ├── ProbeInfo.H │ ├── Probes.H │ ├── ProfileInfo.H │ ├── SamplesBuffer.H │ └── SamplesLoader.H │ ├── intercept │ └── Report.H │ ├── log │ └── Log.H │ ├── perf │ ├── PerfEvent.H │ ├── PerfEventAttrSet.H │ ├── PerfEventSet.H │ ├── PerfEventsApi.H │ └── PerfEventsCtl.H │ ├── platform │ └── Builtins.H │ ├── pmu │ ├── EventSelect.h │ ├── EventSet.h │ ├── FixedPmcSet.H │ ├── Formatter.h │ ├── PMUArch.h │ ├── PMUCtl.H │ └── fwd.h │ ├── probes │ ├── CallSite.H │ ├── Config.H │ ├── Probe.H │ ├── ProbeCtl.H │ ├── ProbeKey.H │ ├── ProbeList.H │ ├── RecorderCtl.H │ ├── Recorders.H │ ├── Sample.H │ └── StackAlign.H │ ├── transport │ ├── Buffer.H │ ├── Frame.H │ ├── Framer.H │ ├── Listener.H │ ├── Platform.H │ └── Socket.H │ └── util │ ├── AddressSpace.H │ ├── Allocator.H │ ├── Errno.H │ ├── RNG.H │ ├── ThreadInfo.H │ ├── Tsc.H │ └── Util.H ├── install.sh ├── jni ├── CMakeLists.txt ├── build.gradle ├── include │ └── Runtime.H ├── jar │ └── javassist.jar ├── lib │ └── Runtime.C └── src │ ├── META-INF │ └── MANIFEST.MF │ ├── demo │ └── java │ │ └── com │ │ └── xpedite │ │ └── demo │ │ ├── App.java │ │ └── EmbeddedDemo.java │ └── main │ └── java │ └── com │ └── xpedite │ ├── AppInfo.java │ ├── ClassTransformer.java │ ├── Xpedite.java │ └── probes │ ├── AbstractProbe.java │ ├── AnchoredProbe.java │ ├── CallSite.java │ └── ScopedProbe.java ├── ko ├── Makefile ├── README.md ├── include │ └── xpedite │ │ └── pmu │ │ ├── EventSelect.h │ │ ├── EventSet.h │ │ ├── Formatter.h │ │ ├── PCECtl.h │ │ ├── PMUArch.h │ │ └── fwd.h └── lib │ └── xpedite │ └── pmu │ ├── EventSet.c │ ├── Formatter.c │ ├── PCECtl.c │ ├── PMUArch.c │ └── PMUDevice.c ├── lib ├── stub │ └── Stub.C └── xpedite │ ├── framework │ ├── Collector.C │ ├── Collector.H │ ├── Framework.C │ ├── Handler.C │ ├── Handler.H │ ├── Persister.C │ ├── Profile.H │ ├── SamplesBuffer.C │ ├── SamplesLoader.C │ ├── StorageMgr.C │ ├── StorageMgr.H │ ├── request │ │ ├── AbstractRequest.H │ │ ├── ProbeRequest.H │ │ ├── ProfileRequest.H │ │ ├── Request.C │ │ ├── Request.H │ │ ├── RequestParser.C │ │ └── RequestParser.H │ └── session │ │ ├── LocalSession.H │ │ ├── RemoteSession.C │ │ ├── RemoteSession.H │ │ └── SessionManager.H │ ├── intercept │ ├── Intercept.C │ ├── InterceptFallback.C │ ├── Report.C │ └── TlScopedDatum.H │ ├── log │ └── Log.C │ ├── perf │ ├── PerfEvent.C │ ├── PerfEventAttrSet.C │ ├── PerfEventSet.C │ ├── PerfEventsApi.C │ └── PerfEventsCtl.C │ ├── pmu │ ├── EventSet.c │ ├── Formatter.c │ └── PMUCtl.C │ ├── probes │ ├── Config.C │ ├── DataProbeCtl.S │ ├── IdentityProbeCtl.S │ ├── Probe.C │ ├── ProbeCtl.C │ ├── ProbeCtl.S │ ├── ProbeList.C │ ├── RecorderCtl.C │ └── Recorders.C │ ├── pybind │ └── Bindings.cpp │ ├── transport │ ├── Framer.C │ └── Listener.C │ └── util │ ├── AddressSpace.C │ ├── ThreadInfo.C │ └── Util.C ├── scripts ├── .pylintrc ├── bin │ ├── ko.sh │ └── xpedite └── lib │ ├── LICENSE │ ├── README.md │ ├── examples │ └── profileInfo.py │ ├── ext │ ├── logger │ ├── __init__.py │ └── conf.ini │ ├── setup.py │ ├── thirdParty │ ├── __init__.py │ ├── html.py │ └── pyprof2calltree.py │ └── xpedite │ ├── __init__.py │ ├── analytics │ ├── __init__.py │ ├── aggregator.py │ ├── conflator.py │ ├── timeline.py │ ├── timelineFilter.py │ ├── timelineTree.py │ └── treeCollections.py │ ├── benchmark │ ├── __init__.py │ └── info.py │ ├── dependencies │ ├── __init__.py │ ├── config.py │ └── pluginLoader.py │ ├── jupyter │ ├── __init__.py │ ├── archive.py │ ├── autoComplete.py │ ├── commands.py │ ├── context.py │ ├── data │ │ ├── config │ │ │ ├── custom │ │ │ │ ├── bipartite.css │ │ │ │ ├── code.css │ │ │ │ ├── custom.css │ │ │ │ ├── custom.js │ │ │ │ ├── darkTheme.css │ │ │ │ ├── flot.css │ │ │ │ ├── notebook.css │ │ │ │ ├── static.css │ │ │ │ ├── sunburst.css │ │ │ │ └── xpedite.css │ │ │ ├── jupyter_server_config.py │ │ │ ├── migrated │ │ │ ├── nbconfig │ │ │ │ └── notebook.json │ │ │ └── serverextensions │ │ │ │ └── tornadoExtension │ │ │ │ └── __init__.py │ │ ├── extensions │ │ │ └── nbextensions │ │ │ │ ├── freeze │ │ │ │ ├── config.yaml │ │ │ │ ├── icon.png │ │ │ │ ├── main_freeze.js │ │ │ │ └── readme.md │ │ │ │ ├── hide │ │ │ │ ├── hide-input.yaml │ │ │ │ ├── icon.png │ │ │ │ ├── main_hide.js │ │ │ │ └── readme.md │ │ │ │ ├── init │ │ │ │ ├── README.md │ │ │ │ ├── icon.png │ │ │ │ ├── init_cell.yaml │ │ │ │ └── main_init.js │ │ │ │ └── snippets │ │ │ │ ├── README.md │ │ │ │ ├── main_snippets.js │ │ │ │ ├── snippets-demo.gif │ │ │ │ ├── snippets.json │ │ │ │ └── snippets.yaml │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── d3.min.js │ │ │ ├── d3.v4.min.js │ │ │ ├── d3flot.js │ │ │ ├── jquery-3.2.1.min.js │ │ │ ├── jquery.floatThead.min.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.tablesorter.min.js │ │ │ ├── jquery.tipsy.js │ │ │ ├── sunburst.js │ │ │ ├── viz.v1.js │ │ │ └── xpedite.js │ ├── driver.py │ ├── plot.py │ ├── result.py │ ├── snippetsBuilder.py │ ├── templates │ │ ├── __init__.py │ │ ├── bipartite.html │ │ ├── category.fmt │ │ ├── initCell.fmt │ │ ├── initCell.py │ │ └── sunburst.html │ └── xpediteData.py │ ├── pmu │ ├── __init__.py │ ├── allocator.py │ ├── event.py │ ├── eventsDb.py │ ├── eventsLoader.py │ ├── hierarchy.py │ ├── pmuctrl.py │ ├── request.py │ ├── topdown.py │ ├── uarchEvent.py │ └── uarchspec │ │ ├── __init__.py │ │ ├── data │ │ ├── ADL │ │ │ └── alderlake_goldencove_core_v1.01.json │ │ ├── BDW-DE │ │ │ └── broadwellde_core_v7.json │ │ ├── BDW │ │ │ └── broadwell_core_v26.json │ │ ├── BDX │ │ │ └── broadwellx_core_v17.json │ │ ├── BNL │ │ │ └── Bonnell_core_V4.json │ │ ├── CLX │ │ │ └── cascadelakex_core_v1.14.json │ │ ├── EHL │ │ │ └── elkhartlake_core_v1.02.json │ │ ├── GLM │ │ │ └── goldmont_core_v13.json │ │ ├── GLP │ │ │ └── goldmontplus_core_v1.01.json │ │ ├── HSW │ │ │ └── haswell_core_v30.json │ │ ├── HSX │ │ │ └── haswellx_core_v22.json │ │ ├── ICL │ │ │ └── icelake_core_v1.12.json │ │ ├── ICX │ │ │ └── icelakex_core_v1.09.json │ │ ├── IVB │ │ │ └── ivybridge_core_v21.json │ │ ├── IVT │ │ │ └── ivytown_core_v20.json │ │ ├── JKT │ │ │ └── Jaketown_core_V20.json │ │ ├── KNL │ │ │ └── KnightsLanding_core_V9.json │ │ ├── KNM │ │ │ └── KnightsLanding_core_V9.json │ │ ├── NHM-EP │ │ │ └── NehalemEP_core_V2.json │ │ ├── NHM-EX │ │ │ └── NehalemEX_core_V2.json │ │ ├── SKL │ │ │ └── skylake_core_v52.json │ │ ├── SKX │ │ │ └── skylakex_core_v1.26.json │ │ ├── SLM │ │ │ └── Silvermont_core_V14.json │ │ ├── SNB │ │ │ └── sandybridge_core_v16.json │ │ ├── SNR │ │ │ └── snowridgex_core_v1.16.json │ │ ├── TGL │ │ │ └── tigerlake_core_v1.05.json │ │ ├── WSM-EP-DP │ │ │ └── WestmereEP-DP_core_V2.json │ │ ├── WSM-EP-SP │ │ │ └── WestmereEP-SP_core_V2.json │ │ ├── WSM-EX │ │ │ └── WestmereEX_core_V2.json │ │ └── mapfile.csv │ │ └── uarchSpecLoader.py │ ├── profiler │ ├── __init__.py │ ├── app.py │ ├── appInfo.py │ ├── environment.py │ ├── probeAdmin.py │ ├── profile.py │ ├── profileInfo.py │ ├── profileInfoGenerator.py │ ├── reportgenerator.py │ ├── resolver.py │ └── runtime.py │ ├── report │ ├── __init__.py │ ├── benchmarkStatsContainer.fmt │ ├── codeFormatter.py │ ├── diff.py │ ├── env.py │ ├── flot.py │ ├── histogram.py │ ├── markup.py │ ├── profileInfo.py │ ├── reportbuilder.py │ ├── stats.py │ └── tabs.py │ ├── requirements.txt │ ├── selfProfile │ └── __init__.py │ ├── transport │ ├── __init__.py │ ├── client.py │ ├── net.py │ ├── remote.py │ └── rpyc │ ├── txn │ ├── __init__.py │ ├── classifier.py │ ├── collection.py │ ├── collector.py │ ├── extractor.py │ ├── filter.py │ ├── fragments.py │ ├── loader.py │ └── repo.py │ ├── types │ ├── __init__.py │ ├── containers.py │ ├── dataSource.py │ ├── probe.py │ └── route.py │ └── util │ ├── __init__.py │ ├── cpuInfo.py │ └── probeFactory.py ├── settings.gradle ├── test ├── .testrc ├── generateBaseline.sh ├── gtest │ ├── AtoiHex.C │ ├── Framework.C │ ├── Main.C │ ├── Override.H │ ├── PMUCtl.C │ ├── PerfEventsApi.C │ ├── PerfEventsApi.H │ ├── Pmc.C │ ├── Probe.C │ ├── ProbeData.C │ └── WaitFreeBufferPool.C ├── pytest │ ├── conftest.py │ └── test_xpedite │ │ ├── __init__.py │ │ ├── dataPy2 │ │ ├── __init__.py │ │ ├── allocatorAppBenchmark.tar.gz │ │ ├── allocatorAppBenchmarkManifest.csv │ │ ├── allocatorAppPMC.tar.gz │ │ ├── allocatorAppPMCManifest.csv │ │ ├── allocatorAppRegular.tar.gz │ │ ├── allocatorAppRegularManifest.csv │ │ ├── dataTxnAppBenchmark.tar.gz │ │ ├── dataTxnAppBenchmarkManifest.csv │ │ ├── dataTxnAppPMC.tar.gz │ │ ├── dataTxnAppPMCManifest.csv │ │ ├── dataTxnAppRegular.tar.gz │ │ ├── dataTxnAppRegularManifest.csv │ │ ├── multiThreadedAppBenchmark.tar.gz │ │ ├── multiThreadedAppBenchmarkManifest.csv │ │ ├── multiThreadedAppPMC.tar.gz │ │ ├── multiThreadedAppPMCManifest.csv │ │ ├── multiThreadedAppRegular.tar.gz │ │ ├── multiThreadedAppRegularManifest.csv │ │ ├── pmuData.tar.gz │ │ ├── pmuDataManifest.csv │ │ ├── slowFixDecoderAppBenchmark.tar.gz │ │ ├── slowFixDecoderAppBenchmarkManifest.csv │ │ ├── slowFixDecoderAppPMC.tar.gz │ │ ├── slowFixDecoderAppPMCManifest.csv │ │ ├── slowFixDecoderAppRegular.tar.gz │ │ └── slowFixDecoderAppRegularManifest.csv │ │ ├── dataPy3 │ │ ├── __init__.py │ │ ├── allocatorAppBenchmark.tar.gz │ │ ├── allocatorAppBenchmarkManifest.csv │ │ ├── allocatorAppPMC.tar.gz │ │ ├── allocatorAppPMCManifest.csv │ │ ├── allocatorAppRegular.tar.gz │ │ ├── allocatorAppRegularManifest.csv │ │ ├── dataTxnAppBenchmark.tar.gz │ │ ├── dataTxnAppBenchmarkManifest.csv │ │ ├── dataTxnAppPMC.tar.gz │ │ ├── dataTxnAppPMCManifest.csv │ │ ├── dataTxnAppRegular.tar.gz │ │ ├── dataTxnAppRegularManifest.csv │ │ ├── multiThreadedAppBenchmark.tar.gz │ │ ├── multiThreadedAppBenchmarkManifest.csv │ │ ├── multiThreadedAppPMC.tar.gz │ │ ├── multiThreadedAppPMCManifest.csv │ │ ├── multiThreadedAppRegular.tar.gz │ │ ├── multiThreadedAppRegularManifest.csv │ │ ├── pmuData.tar.gz │ │ ├── pmuDataManifest.csv │ │ ├── slowFixDecoderAppBenchmark.tar.gz │ │ ├── slowFixDecoderAppBenchmarkManifest.csv │ │ ├── slowFixDecoderAppPMC.tar.gz │ │ ├── slowFixDecoderAppPMCManifest.csv │ │ ├── slowFixDecoderAppRegular.tar.gz │ │ └── slowFixDecoderAppRegularManifest.csv │ │ ├── test_pmu │ │ ├── __init__.py │ │ ├── generateBaseline.py │ │ ├── pmuResults.py │ │ ├── test_allocator.py │ │ ├── test_commands.py │ │ ├── test_events.json │ │ └── test_request.py │ │ └── test_profiler │ │ ├── __init__.py │ │ ├── app.py │ │ ├── comparator.py │ │ ├── context.py │ │ ├── formatters.py │ │ ├── generateBaseline.py │ │ ├── profile.py │ │ ├── scenario.py │ │ ├── test_intercept.py │ │ └── test_profiler.py ├── runTest.sh ├── tarFiles.sh ├── targets │ ├── AllocatorApp.C │ ├── CustomRecorderApp.C │ ├── DataTxnApp.C │ ├── EmbeddedApp.C │ ├── MultiThreadedApp.C │ ├── PicApp.C │ ├── PicLib.C │ └── SlowFixDecoder.C ├── util │ ├── Args.H │ ├── GraphTask.H │ ├── Latch.H │ ├── LogSupressScope.H │ ├── Task.H │ └── Thread.H └── validateTarFiles.sh └── vivify ├── CMakeLists.txt ├── cmake └── test │ └── LibunwindDebugFrame.C ├── demo └── StackUnwind.C ├── include └── vivify │ ├── AddressSpace.H │ ├── StackCallInfo.H │ ├── StackCallInfoOStream.H │ ├── StackUnwind.H │ └── util │ ├── CallInfo.H │ ├── CallResolver.H │ ├── Dwarf.H │ ├── EhFrame.H │ ├── Elf.H │ └── Errno.H └── lib └── vivify ├── AddressSpace.C ├── MMap.C ├── MMap.H ├── StackCallInfoOStream.C ├── StackUnwind.C └── util ├── CallResolver.C ├── Dwarf.C └── Elf.C /.github/actions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/.github/actions/Dockerfile -------------------------------------------------------------------------------- /.github/actions/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/.github/actions/action.yml -------------------------------------------------------------------------------- /.github/actions/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/.github/actions/entrypoint.sh -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/README.md -------------------------------------------------------------------------------- /bin/SamplesLoader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/bin/SamplesLoader.C -------------------------------------------------------------------------------- /dco/alexandros-tasos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/dco/alexandros-tasos.md -------------------------------------------------------------------------------- /dco/dco_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/dco/dco_template.md -------------------------------------------------------------------------------- /dco/kenny-shen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/dco/kenny-shen.md -------------------------------------------------------------------------------- /dco/saleem-ahmad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/dco/saleem-ahmad.md -------------------------------------------------------------------------------- /demo/Demo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/demo/Demo.C -------------------------------------------------------------------------------- /demo/Demo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/demo/Demo.H -------------------------------------------------------------------------------- /demo/Life.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/demo/Life.C -------------------------------------------------------------------------------- /demo/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/demo/demo.sh -------------------------------------------------------------------------------- /demo/profileInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/demo/profileInfo.py -------------------------------------------------------------------------------- /docs/images/cmdTopdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/cmdTopdown.png -------------------------------------------------------------------------------- /docs/images/reportHomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportHomePage.png -------------------------------------------------------------------------------- /docs/images/reportShellBenchmarkFilterPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellBenchmarkFilterPlot.png -------------------------------------------------------------------------------- /docs/images/reportShellBenchmarkHistogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellBenchmarkHistogram.png -------------------------------------------------------------------------------- /docs/images/reportShellBenchmarkStat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellBenchmarkStat.png -------------------------------------------------------------------------------- /docs/images/reportShellFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellFilter.png -------------------------------------------------------------------------------- /docs/images/reportShellFilterPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellFilterPlot.png -------------------------------------------------------------------------------- /docs/images/reportShellFilterStat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellFilterStat.png -------------------------------------------------------------------------------- /docs/images/reportShellHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellHeader.png -------------------------------------------------------------------------------- /docs/images/reportShellHistogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellHistogram.png -------------------------------------------------------------------------------- /docs/images/reportShellPlot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellPlot.png -------------------------------------------------------------------------------- /docs/images/reportShellPlotTxn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellPlotTxn.png -------------------------------------------------------------------------------- /docs/images/reportShellPlotTxnPmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellPlotTxnPmc.png -------------------------------------------------------------------------------- /docs/images/reportShellPlotTxnPmcOnCounter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellPlotTxnPmcOnCounter.png -------------------------------------------------------------------------------- /docs/images/reportShellPlotTxnPmcOnProbe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellPlotTxnPmcOnProbe.png -------------------------------------------------------------------------------- /docs/images/reportShellSnippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellSnippets.png -------------------------------------------------------------------------------- /docs/images/reportShellStat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellStat.png -------------------------------------------------------------------------------- /docs/images/reportShellStatPmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellStatPmc.png -------------------------------------------------------------------------------- /docs/images/reportShellTxns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellTxns.png -------------------------------------------------------------------------------- /docs/images/reportShellTxnsPmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/images/reportShellTxnsPmc.png -------------------------------------------------------------------------------- /docs/pkgDesc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/docs/pkgDesc.txt -------------------------------------------------------------------------------- /include/xpedite/common/PromiseKeeper.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/common/PromiseKeeper.H -------------------------------------------------------------------------------- /include/xpedite/common/WaitFreeBufferPool.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/common/WaitFreeBufferPool.H -------------------------------------------------------------------------------- /include/xpedite/framework/Framework.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/Framework.H -------------------------------------------------------------------------------- /include/xpedite/framework/Options.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/Options.H -------------------------------------------------------------------------------- /include/xpedite/framework/Persister.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/Persister.H -------------------------------------------------------------------------------- /include/xpedite/framework/ProbeData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/ProbeData.H -------------------------------------------------------------------------------- /include/xpedite/framework/ProbeInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/ProbeInfo.H -------------------------------------------------------------------------------- /include/xpedite/framework/Probes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/Probes.H -------------------------------------------------------------------------------- /include/xpedite/framework/ProfileInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/ProfileInfo.H -------------------------------------------------------------------------------- /include/xpedite/framework/SamplesBuffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/SamplesBuffer.H -------------------------------------------------------------------------------- /include/xpedite/framework/SamplesLoader.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/framework/SamplesLoader.H -------------------------------------------------------------------------------- /include/xpedite/intercept/Report.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/intercept/Report.H -------------------------------------------------------------------------------- /include/xpedite/log/Log.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/log/Log.H -------------------------------------------------------------------------------- /include/xpedite/perf/PerfEvent.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/perf/PerfEvent.H -------------------------------------------------------------------------------- /include/xpedite/perf/PerfEventAttrSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/perf/PerfEventAttrSet.H -------------------------------------------------------------------------------- /include/xpedite/perf/PerfEventSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/perf/PerfEventSet.H -------------------------------------------------------------------------------- /include/xpedite/perf/PerfEventsApi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/perf/PerfEventsApi.H -------------------------------------------------------------------------------- /include/xpedite/perf/PerfEventsCtl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/perf/PerfEventsCtl.H -------------------------------------------------------------------------------- /include/xpedite/platform/Builtins.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/platform/Builtins.H -------------------------------------------------------------------------------- /include/xpedite/pmu/EventSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/pmu/EventSelect.h -------------------------------------------------------------------------------- /include/xpedite/pmu/EventSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/pmu/EventSet.h -------------------------------------------------------------------------------- /include/xpedite/pmu/FixedPmcSet.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/pmu/FixedPmcSet.H -------------------------------------------------------------------------------- /include/xpedite/pmu/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/pmu/Formatter.h -------------------------------------------------------------------------------- /include/xpedite/pmu/PMUArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/pmu/PMUArch.h -------------------------------------------------------------------------------- /include/xpedite/pmu/PMUCtl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/pmu/PMUCtl.H -------------------------------------------------------------------------------- /include/xpedite/pmu/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/pmu/fwd.h -------------------------------------------------------------------------------- /include/xpedite/probes/CallSite.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/CallSite.H -------------------------------------------------------------------------------- /include/xpedite/probes/Config.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/Config.H -------------------------------------------------------------------------------- /include/xpedite/probes/Probe.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/Probe.H -------------------------------------------------------------------------------- /include/xpedite/probes/ProbeCtl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/ProbeCtl.H -------------------------------------------------------------------------------- /include/xpedite/probes/ProbeKey.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/ProbeKey.H -------------------------------------------------------------------------------- /include/xpedite/probes/ProbeList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/ProbeList.H -------------------------------------------------------------------------------- /include/xpedite/probes/RecorderCtl.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/RecorderCtl.H -------------------------------------------------------------------------------- /include/xpedite/probes/Recorders.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/Recorders.H -------------------------------------------------------------------------------- /include/xpedite/probes/Sample.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/Sample.H -------------------------------------------------------------------------------- /include/xpedite/probes/StackAlign.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/probes/StackAlign.H -------------------------------------------------------------------------------- /include/xpedite/transport/Buffer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/transport/Buffer.H -------------------------------------------------------------------------------- /include/xpedite/transport/Frame.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/transport/Frame.H -------------------------------------------------------------------------------- /include/xpedite/transport/Framer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/transport/Framer.H -------------------------------------------------------------------------------- /include/xpedite/transport/Listener.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/transport/Listener.H -------------------------------------------------------------------------------- /include/xpedite/transport/Platform.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/transport/Platform.H -------------------------------------------------------------------------------- /include/xpedite/transport/Socket.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/transport/Socket.H -------------------------------------------------------------------------------- /include/xpedite/util/AddressSpace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/util/AddressSpace.H -------------------------------------------------------------------------------- /include/xpedite/util/Allocator.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/util/Allocator.H -------------------------------------------------------------------------------- /include/xpedite/util/Errno.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/util/Errno.H -------------------------------------------------------------------------------- /include/xpedite/util/RNG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/util/RNG.H -------------------------------------------------------------------------------- /include/xpedite/util/ThreadInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/util/ThreadInfo.H -------------------------------------------------------------------------------- /include/xpedite/util/Tsc.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/util/Tsc.H -------------------------------------------------------------------------------- /include/xpedite/util/Util.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/include/xpedite/util/Util.H -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/install.sh -------------------------------------------------------------------------------- /jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/CMakeLists.txt -------------------------------------------------------------------------------- /jni/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/build.gradle -------------------------------------------------------------------------------- /jni/include/Runtime.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/include/Runtime.H -------------------------------------------------------------------------------- /jni/jar/javassist.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/jar/javassist.jar -------------------------------------------------------------------------------- /jni/lib/Runtime.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/lib/Runtime.C -------------------------------------------------------------------------------- /jni/src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /jni/src/demo/java/com/xpedite/demo/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/demo/java/com/xpedite/demo/App.java -------------------------------------------------------------------------------- /jni/src/demo/java/com/xpedite/demo/EmbeddedDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/demo/java/com/xpedite/demo/EmbeddedDemo.java -------------------------------------------------------------------------------- /jni/src/main/java/com/xpedite/AppInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/main/java/com/xpedite/AppInfo.java -------------------------------------------------------------------------------- /jni/src/main/java/com/xpedite/ClassTransformer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/main/java/com/xpedite/ClassTransformer.java -------------------------------------------------------------------------------- /jni/src/main/java/com/xpedite/Xpedite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/main/java/com/xpedite/Xpedite.java -------------------------------------------------------------------------------- /jni/src/main/java/com/xpedite/probes/AbstractProbe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/main/java/com/xpedite/probes/AbstractProbe.java -------------------------------------------------------------------------------- /jni/src/main/java/com/xpedite/probes/AnchoredProbe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/main/java/com/xpedite/probes/AnchoredProbe.java -------------------------------------------------------------------------------- /jni/src/main/java/com/xpedite/probes/CallSite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/main/java/com/xpedite/probes/CallSite.java -------------------------------------------------------------------------------- /jni/src/main/java/com/xpedite/probes/ScopedProbe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/jni/src/main/java/com/xpedite/probes/ScopedProbe.java -------------------------------------------------------------------------------- /ko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/ko/Makefile -------------------------------------------------------------------------------- /ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/ko/README.md -------------------------------------------------------------------------------- /ko/include/xpedite/pmu/EventSelect.h: -------------------------------------------------------------------------------- 1 | ../../../../include/xpedite/pmu/EventSelect.h -------------------------------------------------------------------------------- /ko/include/xpedite/pmu/EventSet.h: -------------------------------------------------------------------------------- 1 | ../../../../include/xpedite/pmu/EventSet.h -------------------------------------------------------------------------------- /ko/include/xpedite/pmu/Formatter.h: -------------------------------------------------------------------------------- 1 | ../../../../include/xpedite/pmu/Formatter.h -------------------------------------------------------------------------------- /ko/include/xpedite/pmu/PCECtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/ko/include/xpedite/pmu/PCECtl.h -------------------------------------------------------------------------------- /ko/include/xpedite/pmu/PMUArch.h: -------------------------------------------------------------------------------- 1 | ../../../../include/xpedite/pmu/PMUArch.h -------------------------------------------------------------------------------- /ko/include/xpedite/pmu/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/ko/include/xpedite/pmu/fwd.h -------------------------------------------------------------------------------- /ko/lib/xpedite/pmu/EventSet.c: -------------------------------------------------------------------------------- 1 | ../../../../lib/xpedite/pmu/EventSet.c -------------------------------------------------------------------------------- /ko/lib/xpedite/pmu/Formatter.c: -------------------------------------------------------------------------------- 1 | ../../../../lib/xpedite/pmu/Formatter.c -------------------------------------------------------------------------------- /ko/lib/xpedite/pmu/PCECtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/ko/lib/xpedite/pmu/PCECtl.c -------------------------------------------------------------------------------- /ko/lib/xpedite/pmu/PMUArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/ko/lib/xpedite/pmu/PMUArch.c -------------------------------------------------------------------------------- /ko/lib/xpedite/pmu/PMUDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/ko/lib/xpedite/pmu/PMUDevice.c -------------------------------------------------------------------------------- /lib/stub/Stub.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/stub/Stub.C -------------------------------------------------------------------------------- /lib/xpedite/framework/Collector.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/Collector.C -------------------------------------------------------------------------------- /lib/xpedite/framework/Collector.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/Collector.H -------------------------------------------------------------------------------- /lib/xpedite/framework/Framework.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/Framework.C -------------------------------------------------------------------------------- /lib/xpedite/framework/Handler.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/Handler.C -------------------------------------------------------------------------------- /lib/xpedite/framework/Handler.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/Handler.H -------------------------------------------------------------------------------- /lib/xpedite/framework/Persister.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/Persister.C -------------------------------------------------------------------------------- /lib/xpedite/framework/Profile.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/Profile.H -------------------------------------------------------------------------------- /lib/xpedite/framework/SamplesBuffer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/SamplesBuffer.C -------------------------------------------------------------------------------- /lib/xpedite/framework/SamplesLoader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/SamplesLoader.C -------------------------------------------------------------------------------- /lib/xpedite/framework/StorageMgr.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/StorageMgr.C -------------------------------------------------------------------------------- /lib/xpedite/framework/StorageMgr.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/StorageMgr.H -------------------------------------------------------------------------------- /lib/xpedite/framework/request/AbstractRequest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/request/AbstractRequest.H -------------------------------------------------------------------------------- /lib/xpedite/framework/request/ProbeRequest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/request/ProbeRequest.H -------------------------------------------------------------------------------- /lib/xpedite/framework/request/ProfileRequest.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/request/ProfileRequest.H -------------------------------------------------------------------------------- /lib/xpedite/framework/request/Request.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/request/Request.C -------------------------------------------------------------------------------- /lib/xpedite/framework/request/Request.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/request/Request.H -------------------------------------------------------------------------------- /lib/xpedite/framework/request/RequestParser.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/request/RequestParser.C -------------------------------------------------------------------------------- /lib/xpedite/framework/request/RequestParser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/request/RequestParser.H -------------------------------------------------------------------------------- /lib/xpedite/framework/session/LocalSession.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/session/LocalSession.H -------------------------------------------------------------------------------- /lib/xpedite/framework/session/RemoteSession.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/session/RemoteSession.C -------------------------------------------------------------------------------- /lib/xpedite/framework/session/RemoteSession.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/session/RemoteSession.H -------------------------------------------------------------------------------- /lib/xpedite/framework/session/SessionManager.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/framework/session/SessionManager.H -------------------------------------------------------------------------------- /lib/xpedite/intercept/Intercept.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/intercept/Intercept.C -------------------------------------------------------------------------------- /lib/xpedite/intercept/InterceptFallback.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/intercept/InterceptFallback.C -------------------------------------------------------------------------------- /lib/xpedite/intercept/Report.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/intercept/Report.C -------------------------------------------------------------------------------- /lib/xpedite/intercept/TlScopedDatum.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/intercept/TlScopedDatum.H -------------------------------------------------------------------------------- /lib/xpedite/log/Log.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/log/Log.C -------------------------------------------------------------------------------- /lib/xpedite/perf/PerfEvent.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/perf/PerfEvent.C -------------------------------------------------------------------------------- /lib/xpedite/perf/PerfEventAttrSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/perf/PerfEventAttrSet.C -------------------------------------------------------------------------------- /lib/xpedite/perf/PerfEventSet.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/perf/PerfEventSet.C -------------------------------------------------------------------------------- /lib/xpedite/perf/PerfEventsApi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/perf/PerfEventsApi.C -------------------------------------------------------------------------------- /lib/xpedite/perf/PerfEventsCtl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/perf/PerfEventsCtl.C -------------------------------------------------------------------------------- /lib/xpedite/pmu/EventSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/pmu/EventSet.c -------------------------------------------------------------------------------- /lib/xpedite/pmu/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/pmu/Formatter.c -------------------------------------------------------------------------------- /lib/xpedite/pmu/PMUCtl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/pmu/PMUCtl.C -------------------------------------------------------------------------------- /lib/xpedite/probes/Config.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/Config.C -------------------------------------------------------------------------------- /lib/xpedite/probes/DataProbeCtl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/DataProbeCtl.S -------------------------------------------------------------------------------- /lib/xpedite/probes/IdentityProbeCtl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/IdentityProbeCtl.S -------------------------------------------------------------------------------- /lib/xpedite/probes/Probe.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/Probe.C -------------------------------------------------------------------------------- /lib/xpedite/probes/ProbeCtl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/ProbeCtl.C -------------------------------------------------------------------------------- /lib/xpedite/probes/ProbeCtl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/ProbeCtl.S -------------------------------------------------------------------------------- /lib/xpedite/probes/ProbeList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/ProbeList.C -------------------------------------------------------------------------------- /lib/xpedite/probes/RecorderCtl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/RecorderCtl.C -------------------------------------------------------------------------------- /lib/xpedite/probes/Recorders.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/probes/Recorders.C -------------------------------------------------------------------------------- /lib/xpedite/pybind/Bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/pybind/Bindings.cpp -------------------------------------------------------------------------------- /lib/xpedite/transport/Framer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/transport/Framer.C -------------------------------------------------------------------------------- /lib/xpedite/transport/Listener.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/transport/Listener.C -------------------------------------------------------------------------------- /lib/xpedite/util/AddressSpace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/util/AddressSpace.C -------------------------------------------------------------------------------- /lib/xpedite/util/ThreadInfo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/util/ThreadInfo.C -------------------------------------------------------------------------------- /lib/xpedite/util/Util.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/lib/xpedite/util/Util.C -------------------------------------------------------------------------------- /scripts/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/.pylintrc -------------------------------------------------------------------------------- /scripts/bin/ko.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/bin/ko.sh -------------------------------------------------------------------------------- /scripts/bin/xpedite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/bin/xpedite -------------------------------------------------------------------------------- /scripts/lib/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LICENSE.md -------------------------------------------------------------------------------- /scripts/lib/README.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /scripts/lib/examples/profileInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/examples/profileInfo.py -------------------------------------------------------------------------------- /scripts/lib/ext: -------------------------------------------------------------------------------- 1 | ../../ -------------------------------------------------------------------------------- /scripts/lib/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/logger/__init__.py -------------------------------------------------------------------------------- /scripts/lib/logger/conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/logger/conf.ini -------------------------------------------------------------------------------- /scripts/lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/setup.py -------------------------------------------------------------------------------- /scripts/lib/thirdParty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/lib/thirdParty/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/thirdParty/html.py -------------------------------------------------------------------------------- /scripts/lib/thirdParty/pyprof2calltree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/thirdParty/pyprof2calltree.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/analytics/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/analytics/aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/analytics/aggregator.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/analytics/conflator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/analytics/conflator.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/analytics/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/analytics/timeline.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/analytics/timelineFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/analytics/timelineFilter.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/analytics/timelineTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/analytics/timelineTree.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/analytics/treeCollections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/analytics/treeCollections.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/benchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/benchmark/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/benchmark/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/benchmark/info.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/dependencies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/dependencies/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/dependencies/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/dependencies/config.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/dependencies/pluginLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/dependencies/pluginLoader.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/archive.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/autoComplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/autoComplete.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/commands.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/context.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/bipartite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/bipartite.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/code.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/custom.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/custom.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/darkTheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/darkTheme.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/flot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/flot.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/notebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/notebook.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/static.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/static.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/sunburst.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/custom/xpedite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/custom/xpedite.css -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/jupyter_server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/jupyter_server_config.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/migrated: -------------------------------------------------------------------------------- 1 | 2017-06-13T16:45:12.787853 -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/nbconfig/notebook.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/config/serverextensions/tornadoExtension/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/config/serverextensions/tornadoExtension/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/config.yaml -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/icon.png -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/main_freeze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/main_freeze.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/freeze/readme.md -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/hide-input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/hide-input.yaml -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/icon.png -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/main_hide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/main_hide.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/hide/readme.md -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/README.md -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/icon.png -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/init_cell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/init_cell.yaml -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/main_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/init/main_init.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/README.md -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/main_snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/main_snippets.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/snippets-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/snippets-demo.gif -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/snippets.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/snippets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/extensions/nbextensions/snippets/snippets.yaml -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/bootstrap.min.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/d3.min.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/d3.v4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/d3.v4.min.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/d3flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/d3flot.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/jquery.floatThead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/jquery.floatThead.min.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/jquery.flot.min.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/jquery.tipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/jquery.tipsy.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/sunburst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/sunburst.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/viz.v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/viz.v1.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/data/js/xpedite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/data/js/xpedite.js -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/driver.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/plot.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/result.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/snippetsBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/snippetsBuilder.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/templates/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/templates/bipartite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/templates/bipartite.html -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/templates/category.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/templates/category.fmt -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/templates/initCell.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/templates/initCell.fmt -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/templates/initCell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/templates/initCell.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/templates/sunburst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/templates/sunburst.html -------------------------------------------------------------------------------- /scripts/lib/xpedite/jupyter/xpediteData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/jupyter/xpediteData.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/allocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/allocator.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/event.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/eventsDb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/eventsDb.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/eventsLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/eventsLoader.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/hierarchy.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/pmuctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/pmuctrl.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/request.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/topdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/topdown.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchEvent.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/ADL/alderlake_goldencove_core_v1.01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/ADL/alderlake_goldencove_core_v1.01.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/BDW-DE/broadwellde_core_v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/BDW-DE/broadwellde_core_v7.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/BDW/broadwell_core_v26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/BDW/broadwell_core_v26.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/BDX/broadwellx_core_v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/BDX/broadwellx_core_v17.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/BNL/Bonnell_core_V4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/BNL/Bonnell_core_V4.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/CLX/cascadelakex_core_v1.14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/CLX/cascadelakex_core_v1.14.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/EHL/elkhartlake_core_v1.02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/EHL/elkhartlake_core_v1.02.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/GLM/goldmont_core_v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/GLM/goldmont_core_v13.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/GLP/goldmontplus_core_v1.01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/GLP/goldmontplus_core_v1.01.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/HSW/haswell_core_v30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/HSW/haswell_core_v30.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/HSX/haswellx_core_v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/HSX/haswellx_core_v22.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/ICL/icelake_core_v1.12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/ICL/icelake_core_v1.12.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/ICX/icelakex_core_v1.09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/ICX/icelakex_core_v1.09.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/IVB/ivybridge_core_v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/IVB/ivybridge_core_v21.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/IVT/ivytown_core_v20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/IVT/ivytown_core_v20.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/JKT/Jaketown_core_V20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/JKT/Jaketown_core_V20.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/KNL/KnightsLanding_core_V9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/KNL/KnightsLanding_core_V9.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/KNM/KnightsLanding_core_V9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/KNM/KnightsLanding_core_V9.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/NHM-EP/NehalemEP_core_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/NHM-EP/NehalemEP_core_V2.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/NHM-EX/NehalemEX_core_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/NHM-EX/NehalemEX_core_V2.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/SKL/skylake_core_v52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/SKL/skylake_core_v52.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/SKX/skylakex_core_v1.26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/SKX/skylakex_core_v1.26.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/SLM/Silvermont_core_V14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/SLM/Silvermont_core_V14.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/SNB/sandybridge_core_v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/SNB/sandybridge_core_v16.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/SNR/snowridgex_core_v1.16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/SNR/snowridgex_core_v1.16.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/TGL/tigerlake_core_v1.05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/TGL/tigerlake_core_v1.05.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/WSM-EP-DP/WestmereEP-DP_core_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/WSM-EP-DP/WestmereEP-DP_core_V2.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/WSM-EP-SP/WestmereEP-SP_core_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/WSM-EP-SP/WestmereEP-SP_core_V2.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/WSM-EX/WestmereEX_core_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/WSM-EX/WestmereEX_core_V2.json -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/data/mapfile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/data/mapfile.csv -------------------------------------------------------------------------------- /scripts/lib/xpedite/pmu/uarchspec/uarchSpecLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/pmu/uarchspec/uarchSpecLoader.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/app.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/appInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/appInfo.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/environment.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/probeAdmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/probeAdmin.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/profile.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/profileInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/profileInfo.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/profileInfoGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/profileInfoGenerator.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/reportgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/reportgenerator.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/resolver.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/profiler/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/profiler/runtime.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/benchmarkStatsContainer.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/benchmarkStatsContainer.fmt -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/codeFormatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/codeFormatter.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/diff.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/env.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/flot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/flot.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/histogram.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/markup.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/profileInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/profileInfo.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/reportbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/reportbuilder.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/stats.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/report/tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/report/tabs.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/requirements.txt -------------------------------------------------------------------------------- /scripts/lib/xpedite/selfProfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/selfProfile/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/transport/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/transport/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/transport/client.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/transport/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/transport/net.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/transport/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/transport/remote.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/transport/rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/transport/rpyc -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/classifier.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/collection.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/collector.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/extractor.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/filter.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/fragments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/fragments.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/loader.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/txn/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/txn/repo.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/types/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/types/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/types/containers.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/types/dataSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/types/dataSource.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/types/probe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/types/probe.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/types/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/types/route.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/util/__init__.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/util/cpuInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/util/cpuInfo.py -------------------------------------------------------------------------------- /scripts/lib/xpedite/util/probeFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/scripts/lib/xpedite/util/probeFactory.py -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'xpedite' 2 | include 'jni' 3 | -------------------------------------------------------------------------------- /test/.testrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/.testrc -------------------------------------------------------------------------------- /test/generateBaseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/generateBaseline.sh -------------------------------------------------------------------------------- /test/gtest/AtoiHex.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/AtoiHex.C -------------------------------------------------------------------------------- /test/gtest/Framework.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/Framework.C -------------------------------------------------------------------------------- /test/gtest/Main.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/Main.C -------------------------------------------------------------------------------- /test/gtest/Override.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/Override.H -------------------------------------------------------------------------------- /test/gtest/PMUCtl.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/PMUCtl.C -------------------------------------------------------------------------------- /test/gtest/PerfEventsApi.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/PerfEventsApi.C -------------------------------------------------------------------------------- /test/gtest/PerfEventsApi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/PerfEventsApi.H -------------------------------------------------------------------------------- /test/gtest/Pmc.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/Pmc.C -------------------------------------------------------------------------------- /test/gtest/Probe.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/Probe.C -------------------------------------------------------------------------------- /test/gtest/ProbeData.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/ProbeData.C -------------------------------------------------------------------------------- /test/gtest/WaitFreeBufferPool.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/gtest/WaitFreeBufferPool.C -------------------------------------------------------------------------------- /test/pytest/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/conftest.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/__init__.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/allocatorAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/allocatorAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/allocatorAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/allocatorAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/allocatorAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/allocatorAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/allocatorAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/allocatorAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/allocatorAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/allocatorAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/allocatorAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/allocatorAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/dataTxnAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/dataTxnAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/dataTxnAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/dataTxnAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/dataTxnAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/dataTxnAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/dataTxnAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/dataTxnAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/dataTxnAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/dataTxnAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/dataTxnAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/dataTxnAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/multiThreadedAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/multiThreadedAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/multiThreadedAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/multiThreadedAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/multiThreadedAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/multiThreadedAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/multiThreadedAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/multiThreadedAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/multiThreadedAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/multiThreadedAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/multiThreadedAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/multiThreadedAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/pmuData.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/pmuData.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/pmuDataManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/pmuDataManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/slowFixDecoderAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/slowFixDecoderAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/slowFixDecoderAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/slowFixDecoderAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/slowFixDecoderAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/slowFixDecoderAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/slowFixDecoderAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/slowFixDecoderAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/slowFixDecoderAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/slowFixDecoderAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy2/slowFixDecoderAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy2/slowFixDecoderAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/allocatorAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/allocatorAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/allocatorAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/allocatorAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/allocatorAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/allocatorAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/allocatorAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/allocatorAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/allocatorAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/allocatorAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/allocatorAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/allocatorAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/dataTxnAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/dataTxnAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/dataTxnAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/dataTxnAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/dataTxnAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/dataTxnAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/dataTxnAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/dataTxnAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/dataTxnAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/dataTxnAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/dataTxnAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/dataTxnAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/multiThreadedAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/multiThreadedAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/multiThreadedAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/multiThreadedAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/multiThreadedAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/multiThreadedAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/multiThreadedAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/multiThreadedAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/multiThreadedAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/multiThreadedAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/multiThreadedAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/multiThreadedAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/pmuData.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/pmuData.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/pmuDataManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/pmuDataManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/slowFixDecoderAppBenchmark.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/slowFixDecoderAppBenchmark.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/slowFixDecoderAppBenchmarkManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/slowFixDecoderAppBenchmarkManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/slowFixDecoderAppPMC.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/slowFixDecoderAppPMC.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/slowFixDecoderAppPMCManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/slowFixDecoderAppPMCManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/slowFixDecoderAppRegular.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/slowFixDecoderAppRegular.tar.gz -------------------------------------------------------------------------------- /test/pytest/test_xpedite/dataPy3/slowFixDecoderAppRegularManifest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/dataPy3/slowFixDecoderAppRegularManifest.csv -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_pmu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_pmu/__init__.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_pmu/generateBaseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_pmu/generateBaseline.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_pmu/pmuResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_pmu/pmuResults.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_pmu/test_allocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_pmu/test_allocator.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_pmu/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_pmu/test_commands.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_pmu/test_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_pmu/test_events.json -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_pmu/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_pmu/test_request.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/app.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/comparator.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/context.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/formatters.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/generateBaseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/generateBaseline.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/profile.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/scenario.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/test_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/test_intercept.py -------------------------------------------------------------------------------- /test/pytest/test_xpedite/test_profiler/test_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/pytest/test_xpedite/test_profiler/test_profiler.py -------------------------------------------------------------------------------- /test/runTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/runTest.sh -------------------------------------------------------------------------------- /test/tarFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/tarFiles.sh -------------------------------------------------------------------------------- /test/targets/AllocatorApp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/AllocatorApp.C -------------------------------------------------------------------------------- /test/targets/CustomRecorderApp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/CustomRecorderApp.C -------------------------------------------------------------------------------- /test/targets/DataTxnApp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/DataTxnApp.C -------------------------------------------------------------------------------- /test/targets/EmbeddedApp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/EmbeddedApp.C -------------------------------------------------------------------------------- /test/targets/MultiThreadedApp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/MultiThreadedApp.C -------------------------------------------------------------------------------- /test/targets/PicApp.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/PicApp.C -------------------------------------------------------------------------------- /test/targets/PicLib.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/PicLib.C -------------------------------------------------------------------------------- /test/targets/SlowFixDecoder.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/targets/SlowFixDecoder.C -------------------------------------------------------------------------------- /test/util/Args.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/util/Args.H -------------------------------------------------------------------------------- /test/util/GraphTask.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/util/GraphTask.H -------------------------------------------------------------------------------- /test/util/Latch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/util/Latch.H -------------------------------------------------------------------------------- /test/util/LogSupressScope.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/util/LogSupressScope.H -------------------------------------------------------------------------------- /test/util/Task.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/util/Task.H -------------------------------------------------------------------------------- /test/util/Thread.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/util/Thread.H -------------------------------------------------------------------------------- /test/validateTarFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/test/validateTarFiles.sh -------------------------------------------------------------------------------- /vivify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/CMakeLists.txt -------------------------------------------------------------------------------- /vivify/cmake/test/LibunwindDebugFrame.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/cmake/test/LibunwindDebugFrame.C -------------------------------------------------------------------------------- /vivify/demo/StackUnwind.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/demo/StackUnwind.C -------------------------------------------------------------------------------- /vivify/include/vivify/AddressSpace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/AddressSpace.H -------------------------------------------------------------------------------- /vivify/include/vivify/StackCallInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/StackCallInfo.H -------------------------------------------------------------------------------- /vivify/include/vivify/StackCallInfoOStream.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/StackCallInfoOStream.H -------------------------------------------------------------------------------- /vivify/include/vivify/StackUnwind.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/StackUnwind.H -------------------------------------------------------------------------------- /vivify/include/vivify/util/CallInfo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/util/CallInfo.H -------------------------------------------------------------------------------- /vivify/include/vivify/util/CallResolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/util/CallResolver.H -------------------------------------------------------------------------------- /vivify/include/vivify/util/Dwarf.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/util/Dwarf.H -------------------------------------------------------------------------------- /vivify/include/vivify/util/EhFrame.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/util/EhFrame.H -------------------------------------------------------------------------------- /vivify/include/vivify/util/Elf.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/util/Elf.H -------------------------------------------------------------------------------- /vivify/include/vivify/util/Errno.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/include/vivify/util/Errno.H -------------------------------------------------------------------------------- /vivify/lib/vivify/AddressSpace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/AddressSpace.C -------------------------------------------------------------------------------- /vivify/lib/vivify/MMap.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/MMap.C -------------------------------------------------------------------------------- /vivify/lib/vivify/MMap.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/MMap.H -------------------------------------------------------------------------------- /vivify/lib/vivify/StackCallInfoOStream.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/StackCallInfoOStream.C -------------------------------------------------------------------------------- /vivify/lib/vivify/StackUnwind.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/StackUnwind.C -------------------------------------------------------------------------------- /vivify/lib/vivify/util/CallResolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/util/CallResolver.C -------------------------------------------------------------------------------- /vivify/lib/vivify/util/Dwarf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/util/Dwarf.C -------------------------------------------------------------------------------- /vivify/lib/vivify/util/Elf.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morganstanley/Xpedite/HEAD/vivify/lib/vivify/util/Elf.C --------------------------------------------------------------------------------