Searched refs:run (Results 1 - 25 of 90) sorted by relevance

1234

/gem5/ext/systemc/src/sysc/qt/time/
H A Draw25 /bin/time run $init $config_init
27 /bin/time run $runone $config_runone
29 /bin/time run $blockint $config_blockint
31 /bin/time run $blockfloat $config_blockfloat
34 /bin/time run $vainit0 $config_vainit0
36 /bin/time run $vainit2 $config_vainit2
38 /bin/time run $vainit4 $config_vainit4
40 /bin/time run $vainit8 $config_vainit8
43 /bin/time run $vastart0 $config_vastart0
45 /bin/time run
[all...]
/gem5/src/systemc/core/
H A Dpython.hh44 virtual void run() = 0;
53 virtual void run(pybind11::module &systemc) = 0;
H A Dpython.cc61 ptr->run();
70 ptr->run(m);
H A Dsc_main_python.cc78 ::sc_gem5::scMainFiber.run();
99 run(pybind11::module &systemc) override
H A Dsched_event.hh86 void run() { deschedule(); work(); } function in class:sc_gem5::ScEvent
H A Dscheduler.cc169 Fiber::primaryFiber()->run();
173 // Switch to whatever Fiber is supposed to run this process. All
175 _current->fiber()->run();
184 _current->run();
357 deltas.back()->run();
371 scMainFiber.run();
391 scMainFiber.run();
419 // Return to gem5 to let it run events, etc.
420 Fiber::primaryFiber()->run();
462 scMainFiber.run();
[all...]
/gem5/tests/jenkins/
H A Dpresubmit.sh49 ./main.py run -j4 -t4
/gem5/src/systemc/tests/systemc/communication/sc_export/test03/
H A Dtest03.cpp7 virtual void run() = 0;
15 virtual void run() function in class:C
17 cout << sc_time_stamp() << " In Channel run() " << endl;
64 SC_THREAD(run);
66 void run() { function
68 P1->run();
70 P2->run();
82 the_E.IFP1->run(); // testing the operator-> of sc_export
/gem5/util/stats/
H A Ddb.py48 self.run = int(row[0])
66 self.run = int(row[1])
73 self.run, self.x, self.y, self.data)
114 def __contains__(self, run):
115 return run in self.data
117 def __getitem__(self, run):
118 if run not in self.data:
119 self.data[run] = [ [ 0.0 ] * self.y for i in xrange(self.x) ]
120 return self.data[run]
153 run
[all...]
H A Dstats.py118 for run in source.allRuns:
119 if rx.match(run.name):
120 runs.append(run)
180 disp("run name", "average", "stdev", ">10%", ">1SDV", ">2SDV",
185 for run in runs:
186 runTicks = source.retTicks([ run ])
196 if value(stat, run.run) == 1e300*1e300:
203 #loop through all the various ticks for each run
206 avg += value(stat, run
[all...]
H A Dinfo.py55 def values(stat, run):
59 val = value(stat, run, i)
65 def total(stat, run):
66 return sum(values(stat, run))
118 def __value__(self, run):
132 def __value__(self, run):
133 return value(self.proxy, run, self.index)
142 def __value__(self, run, index):
151 def __value__(self, run):
159 def __value__(self, run, inde
[all...]
/gem5/ext/pybind11/tests/test_embed/
H A Dcatch.cpp19 auto result = Catch::Session().run(argc, argv);
/gem5/src/base/
H A Dfiber.test.cc69 fiber.run();
119 n->run();
128 a.run();
131 a.run();
134 c.run();
141 c.run();
173 lf0.run();
H A Dcoroutine.hh105 callerFiber->run();
120 callerFiber->run();
140 callerFiber->run();
161 * it needs to run. The first argument of the function should be a
165 * should be run on creation, which mimics Boost's Coroutine
169 * @param f task run by the coroutine
176 // When desired, run the Coroutine after it is created
249 * that the coroutine is supposed to run.
257 run();
H A Dfiber.hh56 * calling its run() method which will stop your execution and start the other
79 void run();
98 /// This method is called when this fiber is first run. Override it to
/gem5/ext/ply/example/BASIC/
H A Dbasic.py14 # If a filename has been specified, we try to run it.
23 b.run()
54 b.run()
H A Dbasiclog.py22 # If a filename has been specified, we try to run it.
31 b.run()
62 b.run()
/gem5/src/systemc/tests/systemc/kernel/process_control/reset/method_reset_throw/
H A Dsc_method_reset_throw.cpp44 SC_THREAD(run);
51 void run() { function
/gem5/src/systemc/tlm_core/2/quantum/
H A Dglobal_quantum_python.cc39 run(pybind11::module &systemc) override
/gem5/tests/test-progs/hello/src/
H A DMakefile.arm18 docker run --rm dockcross/linux-arm64 > ./dockcross-arm64
22 docker run --rm dockcross/linux-armv7 > ./dockcross-armv7
H A DMakefile.x8623 docker run --rm dockcross/linux-x64 > ./dockcross-x64
27 docker run --rm dockcross/linux-x86 > ./dockcross-x86
/gem5/src/systemc/tests/systemc/bugs/stack_alignment/
H A Dstack_alignment.cpp92 SC_THREAD(run);
94 void run(void) function
98 cout << "Inside C::run() " << endl;
112 cout << "Between C::run() " << endl;
115 cout << "Out of C::run() " << endl;
/gem5/ext/dsent/
H A DDSENT.h65 void run(const std::map<String, String> &config, Model *ms_model,
/gem5/util/tlm/src/
H A Dsim_control.hh80 /** A callback that is called from the run thread before gem5 simulation is
88 /** A callback that is called from the run thread after gem5 simulation
124 void run();
/gem5/ext/pybind11/
H A Dsetup.py45 def run(self): member in class:InstallHeaders

Completed in 21 milliseconds

1234