all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#65903] [PATCH] gnu: Make vice tunable.
@ 2023-09-13  3:48 raingloom
  2023-09-14 14:46 ` bug#65890: bug#65903: " Ludovic Courtès
  2023-09-14 19:47 ` [bug#65903] [PATCH v2] " raingloom
  0 siblings, 2 replies; 6+ messages in thread
From: raingloom @ 2023-09-13  3:48 UTC (permalink / raw)
  To: 65903; +Cc: 65890, Csepp

From: Csepp <raingloom@riseup.net>

* gnu/packages/emulators.scm (vice)[properties]: Set tunable? to #t.
---
This fixes the issue with unsupported AVX instructions.

 gnu/packages/emulators.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index 1d50c9ef01..dd1e3e877f 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -118,6 +118,7 @@ (define-public vice
   (package
     (name "vice")
     (version "3.7.1")
+    (properties '((tunable? . #t)))
     (source
      (origin
        (method url-fetch)

base-commit: 07d43c66d5c11fef61f9846fefb97fa18e4764f1
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* bug#65890: bug#65903: [PATCH] gnu: Make vice tunable.
  2023-09-13  3:48 [bug#65903] [PATCH] gnu: Make vice tunable raingloom
@ 2023-09-14 14:46 ` Ludovic Courtès
  2023-09-14 19:47 ` [bug#65903] [PATCH v2] " raingloom
  1 sibling, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2023-09-14 14:46 UTC (permalink / raw)
  To: raingloom; +Cc: 65903, 65890

Hi,

raingloom <raingloom@riseup.net> skribis:

> From: Csepp <raingloom@riseup.net>
>
> * gnu/packages/emulators.scm (vice)[properties]: Set tunable? to #t.
> ---
> This fixes the issue with unsupported AVX instructions.

Could you clarify what this means, ideally as a comment above the
property?

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#65903] [PATCH v2] gnu: Make vice tunable.
  2023-09-13  3:48 [bug#65903] [PATCH] gnu: Make vice tunable raingloom
  2023-09-14 14:46 ` bug#65890: bug#65903: " Ludovic Courtès
@ 2023-09-14 19:47 ` raingloom
  2023-09-17 10:05   ` Ludovic Courtès
  1 sibling, 1 reply; 6+ messages in thread
From: raingloom @ 2023-09-14 19:47 UTC (permalink / raw)
  To: 65903; +Cc: ludo, Csepp

From: Csepp <raingloom@riseup.net>

* gnu/packages/emulators.scm (vice)[properties]: Set tunable? to #t.
---
 gnu/packages/emulators.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
index 1d50c9ef01..0fb4a5853b 100644
--- a/gnu/packages/emulators.scm
+++ b/gnu/packages/emulators.scm
@@ -118,6 +118,8 @@ (define-public vice
   (package
     (name "vice")
     (version "3.7.1")
+    ;; without this it would use AVX even when it's not suported:
+    (properties '((tunable? . #t)))
     (source
      (origin
        (method url-fetch)

base-commit: 07d43c66d5c11fef61f9846fefb97fa18e4764f1
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [bug#65903] [PATCH v2] gnu: Make vice tunable.
  2023-09-14 19:47 ` [bug#65903] [PATCH v2] " raingloom
@ 2023-09-17 10:05   ` Ludovic Courtès
  2023-09-18 12:17     ` Csepp
  0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2023-09-17 10:05 UTC (permalink / raw)
  To: raingloom; +Cc: 65903

Hi,

raingloom <raingloom@riseup.net> skribis:

> From: Csepp <raingloom@riseup.net>
>
> * gnu/packages/emulators.scm (vice)[properties]: Set tunable? to #t.
> ---
>  gnu/packages/emulators.scm | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
> index 1d50c9ef01..0fb4a5853b 100644
> --- a/gnu/packages/emulators.scm
> +++ b/gnu/packages/emulators.scm
> @@ -118,6 +118,8 @@ (define-public vice
>    (package
>      (name "vice")
>      (version "3.7.1")
> +    ;; without this it would use AVX even when it's not suported:

Oh I see.  It’s a problem that ‘tunable?’ in itself doesn’t solve.

The fix would be twofold: (1) remove ‘-march’ and similar compiler
arguments that cause it to generate code that assumes AVX availability,
and (2) add the ‘tune?’ property for those who want a fine-tuned binary.

Could you look into it?

Thanks,
Ludo’.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#65903] [PATCH v2] gnu: Make vice tunable.
  2023-09-17 10:05   ` Ludovic Courtès
@ 2023-09-18 12:17     ` Csepp
  2023-09-19  9:45       ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: Csepp @ 2023-09-18 12:17 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 65903, raingloom


Ludovic Courtès <ludo@gnu.org> writes:

> Hi,
>
> raingloom <raingloom@riseup.net> skribis:
>
>> From: Csepp <raingloom@riseup.net>
>>
>> * gnu/packages/emulators.scm (vice)[properties]: Set tunable? to #t.
>> ---
>>  gnu/packages/emulators.scm | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm
>> index 1d50c9ef01..0fb4a5853b 100644
>> --- a/gnu/packages/emulators.scm
>> +++ b/gnu/packages/emulators.scm
>> @@ -118,6 +118,8 @@ (define-public vice
>>    (package
>>      (name "vice")
>>      (version "3.7.1")
>> +    ;; without this it would use AVX even when it's not suported:
>
> Oh I see.  It’s a problem that ‘tunable?’ in itself doesn’t solve.
>
> The fix would be twofold: (1) remove ‘-march’ and similar compiler
> arguments that cause it to generate code that assumes AVX availability,
> and (2) add the ‘tune?’ property for those who want a fine-tuned binary.
>
> Could you look into it?
>
> Thanks,
> Ludo’.

Umm, it definitely solved it on my machine, which doesn't have AVX.
If that's not a "proper" fix, then sure, I can try looking into it more.
But it seems to me like `tunable?` is already working as intended.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [bug#65903] [PATCH v2] gnu: Make vice tunable.
  2023-09-18 12:17     ` Csepp
@ 2023-09-19  9:45       ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2023-09-19  9:45 UTC (permalink / raw)
  To: Csepp; +Cc: 65903

Hi,

Csepp <raingloom@riseup.net> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:

[...]

>> The fix would be twofold: (1) remove ‘-march’ and similar compiler
>> arguments that cause it to generate code that assumes AVX availability,
>> and (2) add the ‘tune?’ property for those who want a fine-tuned binary.
>>
>> Could you look into it?
>>
>> Thanks,
>> Ludo’.
>
> Umm, it definitely solved it on my machine, which doesn't have AVX.
> If that's not a "proper" fix, then sure, I can try looking into it more.
> But it seems to me like `tunable?` is already working as intended.

What I meant is that someone installing ‘vice’ without ‘--tune’ will
still get a binary that assumes AVXsomething, which may or may not work
on their machine.

The default binary (without ‘--tune’) should target baseline x86_64.

That’s why we need both fixes I mentioned above.

HTH!

Ludo’.




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-09-19  9:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-13  3:48 [bug#65903] [PATCH] gnu: Make vice tunable raingloom
2023-09-14 14:46 ` bug#65890: bug#65903: " Ludovic Courtès
2023-09-14 19:47 ` [bug#65903] [PATCH v2] " raingloom
2023-09-17 10:05   ` Ludovic Courtès
2023-09-18 12:17     ` Csepp
2023-09-19  9:45       ` Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.