Displaying 3 results from an estimated 3 matches for "schduler".
Did you mean:
scheduler
2006 Aug 24
0
RE: Differences in performance between file and LVMbased images
...ed different configurations
> > (period/slice) for the DomU tests to see if it makes any difference?
>
> I don''t know anything about scheduling configurations, so I guess I used
> whatever is the default.
I''m running Xen-3.0.2-2 and seem to be using the sched-sedf schduler (I run
"xm sched-sedf" to see its parameters). If I don''t set the DomU to the same
period and slice as the Dom0 (-p20 -s15) then my network performance suffers
dramatically. I haven''t checked if they have any affect on disk performance
- hence my question. Apparently...
2012 Sep 14
1
[PATCH] xenpm: make argument parsing and error handling more consistent
...gv[])
{
uint32_t value;
- int rc;
- if (argc != 0){
- show_help();
- exit(-1);
- }
+ if ( argc )
+ fprintf(stderr, "Ignoring argument(s)\n");
- rc = xc_get_vcpu_migration_delay(xc_handle, &value);
- if (!rc)
- {
- printf("Schduler vcpu migration delay is %d us\n", value);
- }
+ if ( !xc_get_vcpu_migration_delay(xc_handle, &value) )
+ printf("Scheduler vcpu migration delay is %d us\n", value);
else
- {
- printf("Failed to get scheduler vcpu migration delay, errno=%d\n",...
2013 Mar 01
3
[LLVMdev] RFC: TileGX, a new backend for Tilera's many core processor
On 03/01/2013 02:57 PM, Hal Finkel wrote:
Hi Hal,
thanks for feedback.
> Jiong, I am happy to see the Tile backend being offered for upstream inclusion. Among other things, in the long run, this may help inform and motivate many-core capabilities in LLVM.
>
> First, can you elaborate on the future maintenance and development plans for the target code? Do you plan to add SIMD support?