Displaying 3 results from an estimated 3 matches for "timeinc".
Did you mean:
timeing
2011 Oct 22
0
[LLVMdev] Instruction Scheduling Itineraries
...used to complete the
// stage. Eg. IntUnit1, IntUnit2. NextCycles indicates how many
// cycles should elapse from the start of this stage to the start of
// the next stage in the itinerary. For example:
//
// A stage is specified in one of two ways:
//
// InstrStage<1, [FU_x, FU_y]> - TimeInc defaults to Cycles
// InstrStage<1, [FU_x, FU_y], 0> - TimeInc explicit
//
class InstrStage<int cycles, list<FuncUnit> units,
int timeinc = -1,
ReservationKind kind = Required> {
int Cycles = cycles; // length of stage in mach...
2011 Oct 06
3
[LLVMdev] Multiple-Pipeline Itinerary
Is there a way to express a multiple pipeline itinerary using the
current scheme (maybe some trick with setting NextCycles = 0)?
Specifically, consider a case where a floating-point load simultaneously
uses units from a floating-point pipeline and a load/store pipeline.
Thanks in advance,
Hal
--
Hal Finkel
Postdoctoral Appointee
Leadership Computing Facility
Argonne National Laboratory
2011 Mar 22
25
RFC: Splitting up the file{} type functionality.
The file{} type can do all of the following:
* manage single files
* manage directories
* manage symlinks
* manage recursive file copies
The intersection of all these bits of functionality makes it difficult
to understand exactly what is going on when you''re new to Puppet, and
even experienced users often don''t know how combining symlinks/content
management is going to work.