Skip to content

Commit bd198ca

Browse files
jmcarcellguitargeek
authored andcommitted
Fix the location of some tutorials
1 parent 5ddb405 commit bd198ca

File tree

2 files changed

+26
-29
lines changed

2 files changed

+26
-29
lines changed

root/interpreter/RunInterpreter.cxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
#include "benchmark/benchmark.h"
44

55
BENCHMARK_CAPTURE(TestTutorial, Test_startup, "", "")->Unit(benchmark::kMicrosecond)->UseManualTime();
6-
BENCHMARK_CAPTURE(TestTutorial, Test_hsimple, "tutorials/", "hsimple.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
7-
BENCHMARK_CAPTURE(TestTutorial, Test_TMVAGAexample, "tutorials/", "tmva/TMVAGAexample.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
8-
BENCHMARK_CAPTURE(TestTutorial, Test_TMVAGAexample2, "tutorials/", "tmva/TMVAGAexample2.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
9-
BENCHMARK_CAPTURE(TestTutorial, Test_hvector, "tutorials/", "tree/hvector.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
10-
BENCHMARK_CAPTURE(TestTutorial, Test_hinvertMatrix, "tutorials/", "matrix/invertMatrix.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
11-
BENCHMARK_CAPTURE(TestTutorial, Test_fitLinear, "tutorials/", "fit/fitLinear.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
12-
BENCHMARK_CAPTURE(TestTutorial, Test_roofit103, "tutorials/", "roofit/rf103_interprfuncs.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
13-
BENCHMARK_CAPTURE(TestTutorial, Test_roofit105, "tutorials/", "roofit/rf105_funcbinding.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
14-
BENCHMARK_CAPTURE(TestTutorial, Test_roofit109, "tutorials/", "roofit/rf109_chi2residpull.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
15-
BENCHMARK_CAPTURE(TestTutorial, Test_roofit110, "tutorials/", "roofit/rf110_normintegration.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
16-
BENCHMARK_CAPTURE(TestTutorial, Test_roofit204, "tutorials/", "roofit/rf204_extrangefit.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
6+
BENCHMARK_CAPTURE(TestTutorial, Test_hsimple, "tutorials", "hsimple.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
7+
BENCHMARK_CAPTURE(TestTutorial, Test_TMVAGAexample, "tutorials", "machine_learning/TMVAGAexample.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
8+
BENCHMARK_CAPTURE(TestTutorial, Test_TMVAGAexample2, "tutorials", "machine_learning/TMVAGAexample2.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
9+
BENCHMARK_CAPTURE(TestTutorial, Test_hvector, "tutorials", "io/tree/tree121_hvector.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
10+
BENCHMARK_CAPTURE(TestTutorial, Test_hinvertMatrix, "tutorials", "math/matrix/invertMatrix.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
11+
BENCHMARK_CAPTURE(TestTutorial, Test_fitLinear, "tutorials", "math/fit/fitLinear.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
12+
BENCHMARK_CAPTURE(TestTutorial, Test_roofit103, "tutorials", "roofit/roofit/rf103_interprfuncs.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
13+
BENCHMARK_CAPTURE(TestTutorial, Test_roofit105, "tutorials", "roofit/roofit/rf105_funcbinding.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
14+
BENCHMARK_CAPTURE(TestTutorial, Test_roofit109, "tutorials", "roofit/roofit/rf109_chi2residpull.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
15+
BENCHMARK_CAPTURE(TestTutorial, Test_roofit110, "tutorials", "roofit/roofit/rf110_normintegration.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
16+
BENCHMARK_CAPTURE(TestTutorial, Test_roofit204, "tutorials", "roofit/roofit/rf204a_extendedLikelihood.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
1717

1818
BENCHMARK_MAIN();

root/interpreter/RunInterpreterNoPCH.cxx

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,20 @@
22

33
#include "benchmark/benchmark.h"
44

5-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_minuit2, "tutorials/", "fit/minuit2FitBench.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
6-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_minuit2Gaus, "tutorials/", "fit/minuit2GausFit.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
7-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_quadp, "tutorials/", "quadp/portfolio.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
8-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_foam, "tutorials/", "foam/foam_demo.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
9-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_fftw, "tutorials/", "fft/FFT.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
10-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mlp_higgs, "tutorials/", "mlp/mlpHiggs.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
11-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mlp_regression, "tutorials/", "mlp/mlpRegression.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
12-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mlp_higgs, "tutorials/", "mlp/mlpHiggs.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
13-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mlp_regression, "tutorials/", "mlp/mlpRegression.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
14-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_assembly, "tutorials/", "geom/assembly.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
15-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_na49, "tutorials/", "geom/na49.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
16-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_rootgeom, "tutorials/", "geom/rootgeom.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
17-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_parallel_world, "tutorials/", "geom/parallel_world.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
18-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mp3player, "tutorials/", "geom/mp3player.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
19-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_geometry, "tutorials/", "geom/geometry.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
20-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_radionucl, "tutorials/", "geom/RadioNuclides.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
21-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_rootgeom, "tutorials/", "geom/rootgeom.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
22-
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_xtruSamples, "tutorials/", "geom/xtruSamples.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
5+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_minuit2, "tutorials", "math/fit/minuit2FitBench.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
6+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_minuit2Gaus, "tutorials", "math/fit/minuit2GausFit.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
7+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_quadp, "tutorials", "math/quadp/portfolio.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
8+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_foam, "tutorials", "math/foam/foam_demo.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
9+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_fftw, "tutorials", "math/fft/FFT.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
10+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mlp_higgs, "tutorials", "legacy/mlp/mlpHiggs.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
11+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mlp_regression, "tutorials", "legacy/mlp/mlpRegression.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
12+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_assembly, "tutorials", "geom/assembly.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
13+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_na49, "tutorials", "legacy/g3d/na49.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
14+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_rootgeom, "tutorials", "visualisation/geom/rootgeom.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
15+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_parallel_world, "tutorials", "visualisation/geom/parallel_world.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
16+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_mp3player, "tutorials", "visualisation/geom/mp3player.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
17+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_geometry, "tutorials", "legacy/g3d/geometry.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
18+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_radionucl, "tutorials", "visualisation/geom/RadioNuclides.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
19+
BENCHMARK_CAPTURE(TestTutorial, Test_nopch_xtruSamples, "tutorials", "legacy/g3d/xtruSamples.C")->Unit(benchmark::kMicrosecond)->UseManualTime();
2320

2421
BENCHMARK_MAIN();

0 commit comments

Comments
 (0)