Displaying 4 results from an estimated 4 matches for "total_st".
Did you mean:
total_sg
2019 Nov 30
0
[PATCH nbdkit v2 2/3] filters: stats: Measure time per operation
...lapsed time: %.3f s\n", usecs / USEC);
-
- print_stat (&pread_st, usecs);
- print_stat (&pwrite_st, usecs);
- print_stat (&trim_st, usecs);
- print_stat (&zero_st, usecs);
- print_stat (&extents_st, usecs);
- print_stat (&cache_st, usecs);
+ const stat total_st = {
+ .name = "total",
+ .ops = pread_st.ops
+ + pwrite_st.ops
+ + trim_st.ops
+ + zero_st.ops
+ + extents_st.ops,
+ .bytes = pread_st.bytes
+ + pwrite_st.bytes
+ + trim_st.bytes
+ + zero_st.bytes,
+ .usecs = usecs,...
2019 Nov 30
4
[PATCH nbdkit v2 0/3] filters: stats: More useful, more friendly
- Use more friendly output with GiB and MiB/s
- Measure time per operation, providing finer grain stats
- Add total stats for understanding system throughput
- Add missing stats for flush
I hope that these changes will help to understand and improve virt-v2v
performance.
Changes since v1:
- Keep bytes values
- Increase precision to 0.001 GiB and 0.001 MiB/s
- Add total stats
- Show time before
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not
allocating RBP to any virtual register, the instances of RBP in function
foo are in the machine code when my register allocator starts.)
Function foo calls function bar. Register RBP is not saved across the
call, though it is live after the call. Function bar includes a virtual
register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...l_needed )
indent_puts( "yy_current_state += YY_AT_BOL();" );
if ( reject )
{
indent_puts( "yy_state_ptr = yy_state_buf;" );
indent_puts( "*yy_state_ptr++ = yy_current_state;" );
}
}
}
void gentabs()
{
int i, j, k, *accset, nacc, *acc_array, total_states;
int end_of_buffer_action = num_rules + 1;
acc_array = (int *) allocate_array( current_max_dfas, sizeof( int ) );
nummt = 0;
++num_backing_up;
if ( reject )
{
int EOB_accepting_list[2];
EOB_accepting_list[0] = 0;
EOB_accepting_list[1] = end_of_buffer_action;
accsi...