Displaying 20 results from an estimated 2000 matches similar to: "Preferred CPU model not allowed by hypervisor"
2018 Mar 23
2
Issue with libguestfs-test-tool on a guest hosted on VMWare ESXi
I am using a debian 9 guest, hosted on a ESXi platform with nested
virtualisation enabled.
On this debian 9 guest when I run libguesfs-test-tool, it fails with an
error:
"qemu-system-x86_64:
/build/qemu-DqynNa/qemu-2.8+dfsg/target-i386/kvm.c:1805: kvm_put_msrs:
Assertion `ret == cpu->kvm_msr_buf->nmsrs' failed."
Instead when I use a wrapper script and hook it with the env
2020 Sep 14
0
Re: [ovirt-users] Re: Testing ovirt 4.4.1 Nested KVM on Skylake-client (core i5) does not work
On Mon, Sep 14, 2020 at 8:42 AM Yedidyah Bar David <didi@redhat.com> wrote:
>
> On Mon, Sep 14, 2020 at 12:28 AM wodel youchi <wodel.youchi@gmail.com> wrote:
> >
> > Hi,
> >
> > Thanks for the help, I think I found the solution using this link : https://www.berrange.com/posts/2018/06/29/cpu-model-configuration-for-qemu-kvm-on-x86-hosts/
> >
> >
2017 Oct 02
2
NUMA split mode?
John R Pierce <pierce at hogranch.com> writes:
> On 10/1/2017 8:38 AM, hw wrote:
>> HP says that what they call "NUMA split mode" should be disabled in the
>> BIOS of the Z800 workstation when running Linux. They are reasoning
>> that Linux kernels do not support this feature and even might not boot
>> if it?s enabled.
>
> hmm, that workstation is
2013 Oct 02
0
[LLVMdev] Codegen performance issue: LEA vs. INC.
This sounds like llvm.org/pr13320.
On 17 September 2013 18:20, Bader, Aleksey A <aleksey.a.bader at intel.com> wrote:
> Hi all.
>
>
>
> I’m looking for an advice on how to deal with inefficient code generation
> for Intel Nehalem/Westmere architecture on 64-bit platform for the attached
> test.cpp (LLVM IR is in test.cpp.ll).
>
> The inner loop has 11 iterations
2013 Sep 17
2
[LLVMdev] Codegen performance issue: LEA vs. INC.
Hi all.
I'm looking for an advice on how to deal with inefficient code generation for Intel Nehalem/Westmere architecture on 64-bit platform for the attached test.cpp (LLVM IR is in test.cpp.ll).
The inner loop has 11 iterations and eventually unrolled.
Test.lea.s is the assembly code of the outer loop. It simply has 11 loads, 11 FP add, 11 FP mull, 1 FP store and lea+mov for index
2013 Oct 03
2
[LLVMdev] Codegen performance issue: LEA vs. INC.
The two address pass is only concerned about register pressure. It sounds like it should be taught about profitability. In cases where profitability can only be determined with something machinetracemetric then it probably should live it to more sophisticated pass like regalloc.
In this case, we probably need a profitability target hook which knows about lea. We should also consider disabling
2019 Mar 23
2
Generating object files more efficiently
Johannes,
I tried the last one and it gave me this:
error: unknown target CPU 'XYZ'
note: valid target CPU values are: nocona, core2, penryn, bonnell, atom,
silvermont, slm, goldmont, goldmont-plus, tremont, nehalem, corei7,
westmere, sandybridge, corei7-avx, ivybridge, core-avx-i, haswell,
core-avx2, broadwell, skylake, skylake-avx512, skx, cascadelake,
2013 Oct 05
0
[LLVMdev] Codegen performance issue: LEA vs. INC.
On Oct 2, 2013, at 11:48 PM, Evan Cheng <evan.cheng at apple.com> wrote:
> The two address pass is only concerned about register pressure. It sounds like it should be taught about profitability. In cases where profitability can only be determined with something machinetracemetric then it probably should live it to more sophisticated pass like regalloc.
>
> In this case, we
2016 Jun 14
0
Getting HTTP path-prefix to work with syslinux.efi
On Mon, Jun 13, 2016 at 7:41 PM, Alexander Perlis <aperlis at math.lsu.edu> wrote:
>> > Is syslinux.efi supposed to be able to handle HTTP URLs?
>>
>> If the underlying firmware can. Try just specifying an HTTP URL in the
>> config or on the command line instead of the path-prefix option.
>
>
> Doesn't work. Apparently the Dell UEFI PXE firmware
2017 Oct 01
0
NUMA split mode?
On 10/1/2017 8:38 AM, hw wrote:
> HP says that what they call "NUMA split mode" should be disabled in the
> BIOS of the Z800 workstation when running Linux. They are reasoning
> that Linux kernels do not support this feature and even might not boot
> if it?s enabled.
hmm, that workstation is a dual Xeon 56xx (Westmere-EP, derived from
Nehalem), new in 2010
> Since it
2017 Oct 02
0
NUMA split mode?
On 10/1/2017 9:10 PM, hw wrote:
> I?m trying to download the PDF you pointed me to, but the download is
> stalled. I?m running Centos 7.4, but perhaps there?s an explanation
> in the PDF that might tell me what NUMA split mode is supposed to be.
it loaded fine here again tonight.? huh.
the gist of the article is that they got at best 2-4% improvements with
RHEL 6/SLES 6 on dual
2019 Mar 23
4
Generating object files more efficiently
It is my actual target architecture
________________________________
From: Doerfert, Johannes <jdoerfert at anl.gov>
Sent: Saturday, March 23, 2019 1:30 PM
To: J S
Cc: via llvm-dev
Subject: Re: [llvm-dev] Generating object files more efficiently
I copied "-march=XYZ" from your original email,
you have to replace it with your actual target architecture or simply drop it.
2019 Mar 23
2
Generating object files more efficiently
-march for clang and -march for llc do different things unfortunately.
-march for clang at least on x86 is the same as -mcpu in llc. Which is an
artifact of gcc compatibility.
~Craig
On Sat, Mar 23, 2019 at 1:40 PM Doerfert, Johannes via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Oh, my bad.
>
>
> Idk why llc seems to know that architecture but clang does not.
>
>
2008 Jul 22
2
ActiveRecord Associations issue
Hello all and thank you for reading this message.
I am new to RoR, and ruby too, but i am quite excited about it.
I am developing a RoR project and with active record associations in
the following
manner
# Tables (all tables have only one record)
CREATE TABLE `webcars_development`.`cars` (
`id` int(11) NOT NULL auto_increment,
`model_id` int(11) NOT NULL default ''0'',
2010 Dec 26
2
IMAP messages not being marked read
I recently moved from Fedora 13 to Fedora 14 and consequently to dovecot
2.0.8. Since then, I have observed that messages are not being marked as read
in all cases. The general behavior is:
1. Use my mail client to read all unseen messages. All mail folders show no
messages unread.
2. Tell mail client to check for new mail.
3. Mail client now says that some folders have new mail (1 or more
2010 Mar 30
0
boot_cpu_data differs between Xen hypervisor boot and normal pv_ops kernel boot
Hello,
After booting the xen-stable 2.6.32.10 pv_ops kernel from jeremy git
tree with Xen-4.0.0-rc8 installed,
dmesg | grep PMU shows :
Performance Events : unsupported p6 CPU model 26 no PMU driver, software
events only.
PMU:oprofile: found i386/core_i7.
If I boot the same compiled kernel, without Xen installed,
dmesg | grep PMU shows :
Performance Events : Nehalem/Corei7 events, Intel
2006 Mar 06
5
Question about file_column plugin
Hi!
File_column plugin saves uploaded files to
"public/model/image/model_id/filename", if i understand it correctly.
Does it mean that it creates new folder for every image?
I have product (model) that has_many images (model). Is it possible to
use (or modify) this plugin that it would save my images to different
folder, so the id of the model_id part would be id of the product
2007 Sep 19
3
Create method calling wrong column name in a table
I have a multitable database with an observer logging changes into a
datachange table.
The create method inserts the data into the data change table, updates
my model, and then trys to load from the datachange table. When it
does this it WHERE clause that is generated for me is looking for a
column model_id which I dont have. I don''t want to even have a field
because this table will be
2009 Apr 24
1
RoR - getting started with database relations
Hey everyone... I''m just getting my feet wet with relational databases
using RoR models. The software I''m putting together relies on car
parts. Originally I had the database set up as follows
create_table :parts do |t|
t.column :year, :string
t.column :make, :string
t.column :model, :string
.
.
.
end
However, I now realize it''s much better to do it using
2006 Mar 22
3
Parent-Child Tables Help
can someone help me with this
i have a table
cars
(
id int
model_id int
make_id int
color_id int
description text
constraint fk_cars_carmake foreign key(make_id) references
carmakes(id),
constraint fk_cars_carmodel foreign key(model_id) references
carmodels(id),
constraint fk_cars_color foreign key(color_id) references colors(id)
)
carmakes
(
id int
carmake varchar
)
carmodels
(
id