Re: [nysbirds-l] Black-throated Gray, Kentucky, and Yellow0throated Warblers Heckcher SP, Suffolk County

2024-05-31 Thread Sameer Apte
Hi all,Jack Chaillet and I just had the Kentucky sing twice at this location: (40.7054152, -73.1617553). No visuals yet.The location is accessed by a spur trail off the Forty Foot Rd.Sameer ApteSent from my iPhoneOn May 30, 2024, at 8:15 AM, Shaibal Mitra wrote: On Tuesday 28 May, Mike

[Bug 2067340] Re: can't open pdfs

2024-05-27 Thread Sameer Sharma
** Package changed: linux (Ubuntu) => thunderbird (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2067340 Title: can't open pdfs To manage notifications about this bug go to:

Re: [prometheus-users] how to get count of no.of instance

2024-05-26 Thread Sameer Modak
May 25, 2024 at 11:53:44 AM UTC+5:30 Ben Kochie wrote: > You can use the `up` metric > > sum(...) > / > count(up{job="kafka"}) > > On Fri, May 24, 2024 at 5:53 PM Sameer Modak > wrote: > >> Hello Team, >> >> I want to know the no of instance

[prometheus-users] Re: what insecure_skip_verify will do

2024-05-24 Thread Sameer Modak
fixing it. > > It also depends on what you're talking to: is this a scrape job talking to > an exporter? Is this service discovery? Something else? > > On Thursday 16 May 2024 at 15:12:14 UTC+1 Sameer Modak wrote: > >> So here is the update i did try this insecure skip but i am

[prometheus-users] how to get count of no.of instance

2024-05-24 Thread Sameer Modak
Hello Team, I want to know the no of instance data sending to prometheus. How do i formulate the query . Basically i have below working query but issues is we have 6 instances hence its summing value of all instances. Instead we just need value from one instance.

[prometheus-users] Re: what insecure_skip_verify will do

2024-05-16 Thread Sameer Modak
is the one it's expecting to talk to, or an > imposter. If it's an imposter, they can capture any data sent by the > client, and return any data they like to the client. It's the job of a > certificate to verify the identity of the server, and you've told it to > skip that check. > &

[prometheus-users] Re: what insecure_skip_verify will do

2024-05-16 Thread Sameer Modak
encrypted > > Sameer Modak schrieb am Mittwoch, 15. Mai 2024 um 17:04:07 UTC+2: > >> Hello Team, >> >> If i set insecure_skip_verify: true will my data be unsecured. Will it >> be non ssl?? >> > -- You received this message because you are subscr

[prometheus-users] what insecure_skip_verify will do

2024-05-15 Thread Sameer Modak
Hello Team, If i set insecure_skip_verify: true will my data be unsecured. Will it be non ssl?? -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [ansible-project] Re: become: true does not work but -b works

2024-05-14 Thread Sameer Modak
Hello Brian, Yes it works , Issue was my role was picking the values from roles directory instead from current directory hence despite making changes at current file become was not working. On Tuesday, May 14, 2024 at 8:12:07 PM UTC+5:30 Brian Coca wrote: > We have tests for this and i just

[ansible-project] Re: become: true does not work but -b works

2024-05-14 Thread Sameer Modak
e: Deploy jmx_exporter hosts: all become: true. < works fine if we set it here but i dont want it in this way. tasks: - name: Importing jmx prometheus role import_role: name: prometheusjmx On Tuesday, May 14, 2024 at 2:08:14 PM UTC+5:30 Sameer Modak wrote: > Hello team

[ansible-project] become: true does not work but -b works

2024-05-14 Thread Sameer Modak
Hello team, I am running a role like below despite putting become true for install task i get error. However if run with -b it works. Getting error while running this , ansible-playbook prometheusjmxrole.yml -i ../inventory/staging.yaml The full traceback is: WARNING: The below traceback may

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-14 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra approved this pull request. Looks good to me. But I have no opinion about that discussion with whether "image" should be available for explicit use! https://github.com/llvm/llvm-project/pull/78572 ___ cfe-commits mailing

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-14 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -678,6 +680,50 @@ class SIMemoryLegalizer final : public MachineFunctionPass { bool runOnMachineFunction(MachineFunction ) override; }; +static const StringMap ASNames = {{ +{"global", SIAtomicAddrSpace::GLOBAL}, +{"local", SIAtomicAddrSpace::LDS}, +

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-14 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra edited https://github.com/llvm/llvm-project/pull/78572 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-13 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -678,6 +680,54 @@ class SIMemoryLegalizer final : public MachineFunctionPass { bool runOnMachineFunction(MachineFunction ) override; }; +static std::array, 3> ASNames = {{ +{"global", SIAtomicAddrSpace::GLOBAL}, +{"local", SIAtomicAddrSpace::LDS}, +{"image",

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-13 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -678,6 +680,54 @@ class SIMemoryLegalizer final : public MachineFunctionPass { bool runOnMachineFunction(MachineFunction ) override; }; +static std::array, 3> ASNames = {{ ssahasra wrote: Use StringMap for this?

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-05 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -18365,6 +18366,28 @@ Value *CodeGenFunction::EmitHLSLBuiltinExpr(unsigned BuiltinID, return nullptr; } +void CodeGenFunction::AddAMDGCNFenceAddressSpaceMMRA(llvm::Instruction *Inst, + const CallExpr *E) { + constexpr

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-05 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -678,6 +679,59 @@ class SIMemoryLegalizer final : public MachineFunctionPass { bool runOnMachineFunction(MachineFunction ) override; }; +static std::array, 3> ASNames = {{ +{"global", SIAtomicAddrSpace::GLOBAL}, +{"local", SIAtomicAddrSpace::LDS}, +{"image",

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-05 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -18365,6 +18366,28 @@ Value *CodeGenFunction::EmitHLSLBuiltinExpr(unsigned BuiltinID, return nullptr; } +void CodeGenFunction::AddAMDGCNFenceAddressSpaceMMRA(llvm::Instruction *Inst, ssahasra wrote: The function immediately below this uses "AMDGPU" in

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-05 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra edited https://github.com/llvm/llvm-project/pull/78572 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-05 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -4408,6 +4409,42 @@ Target-Specific Extensions Clang supports some language features conditionally on some targets. +AMDGPU Language Extensions +-- + +__builtin_amdgcn_fence +^^ + +``__builtin_amdgcn_fence`` emits a fence. + +*

[clang] [llvm] [AMDGPU] Add amdgpu-as MMRA for fences (PR #78572)

2024-05-05 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra approved this pull request. The frontend changes and the MMRA emitted in LLVM IR look good to me. The backend changes also look okay, but please see if anyone else has comments about that. https://github.com/llvm/llvm-project/pull/78572

[Bug 2041706] Re: Weird screen glitches in firefox snap

2024-05-05 Thread Sameer Sharma
** Changed in: firefox (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2041706 Title: Weird screen glitches in firefox snap To manage notifications about this

Re: [AI] Accounting Software

2024-05-03 Thread Sameer
Dear Astha, Are you facing accessibility issues in Tally or any other accounting software? I conduct a course on using Tally with JAWS through Snehankit Helpline, a Mumbai-based NGO. Please feel free to connect with me on sameer.la...@gmail.com Regards Sameer Latey On 03-05-2024 02

[clang] [llvm] [AMDGPU] Add OpenCL-specific fence address space masks (PR #78572)

2024-05-03 Thread Sameer Sahasrabuddhe via cfe-commits
ssahasra wrote: > Should we also rename the MMRA to `amdgpu-fence-as` (remove OpenCL from the > name) ? Even the "fence" prefix is not entirely correct. The same tags also make sense on a load-acquire or store-release, which are "fence like" instructions, or "operations with implicit

[clang] [llvm] [AMDGPU] Add OpenCL-specific fence address space masks (PR #78572)

2024-05-03 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -4408,6 +4409,54 @@ Target-Specific Extensions Clang supports some language features conditionally on some targets. +AMDGPU Language Extensions +-- + +__builtin_amdgcn_fence +^^ + +``__builtin_amdgcn_fence`` emits a fence for

[clang] [llvm] [AMDGPU] Add OpenCL-specific fence address space masks (PR #78572)

2024-05-03 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -18365,6 +18366,30 @@ Value *CodeGenFunction::EmitHLSLBuiltinExpr(unsigned BuiltinID, return nullptr; } +void CodeGenFunction::AddAMDGCNAddressSpaceMMRA(llvm::Instruction *Inst, +const CallExpr *E, +

[clang] [llvm] [AMDGPU] Add OpenCL-specific fence address space masks (PR #78572)

2024-05-03 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -18365,6 +18366,30 @@ Value *CodeGenFunction::EmitHLSLBuiltinExpr(unsigned BuiltinID, return nullptr; } +void CodeGenFunction::AddAMDGCNAddressSpaceMMRA(llvm::Instruction *Inst, +const CallExpr *E, +

Re: [ansible-project] how to run play for subgroup when children has same name

2024-04-25 Thread Sameer Modak
ka[01:06].dev >> kafka_dev_web: […] # omitted for brevity, >> kafka_dev_db: […] # but you get the idea. >> children: >> kafka_qa: >> children: >> kafka_qa_app: >> children: >> kafka_qa_app_zoo:

Re: [ansible-project] how to run play for subgroup when children has same name

2024-04-25 Thread Sameer Modak
[…] # but you get the idea. >> children: >> kafka_qa: >> children: >> kafka_qa_app: >> children: >> kafka_qa_app_zoo: >> hosts: >> qa1-main-zookpr[01:03].qa >> kaf

Re: [ansible-project] how to run play for subgroup when children has same name

2024-04-25 Thread Sameer Modak
dev1-main-kafka[01:06].dev >> kafka_dev_app_schema: >> hosts: >> dev1-main-kafka[01:06].dev >> kafka_dev_web: […] # omitted for brevity, >> kafka_dev_db: […] # but you get the idea. >> children: >>

Re: Qemu for TC377

2024-04-24 Thread Sameer Kalliadan Poyil
know how to start tsim for a helloworld.elf for TC3xx ? is there a Menu in highTec IDE to start it ? I believe it is a cmd tool(C:\HIGHTEC\toolchains\tricore\v4.9.3.0-infineon-1.0\bin\tsim) Regards Sameer On Sun, Apr 21, 2024 at 6:18 AM Bastian Koppelmann < kbast...@mail.uni-paderborn.de>

Re: Qemu for TC377

2024-04-24 Thread Sameer Kalliadan Poyil
know how to start tsim for a helloworld.elf for TC3xx ? is there a Menu in highTec IDE to start it ? I believe it is a cmd tool(C:\HIGHTEC\toolchains\tricore\v4.9.3.0-infineon-1.0\bin\tsim) Regards Sameer On Sun, Apr 21, 2024 at 6:18 AM Bastian Koppelmann < kbast...@mail.uni-paderborn.de>

[ansible-project] getting Asible.errors.AnsibleUndefinedVariable: 'broker' is undefined despite assigning in inventory file

2024-04-22 Thread Sameer Modak
Hello Team, I am putting broker: true and zookeeper: true in inventory file but i still getting below exception as its referred in j2 file An exception occurred during task execution. To see the full traceback, use -vvv. The error was: ansible.errors.AnsibleUndefinedVariable: 'broker' is

[ansible-project] how to run play for subgroup when children has same name

2024-04-19 Thread Sameer Modak
I have an inventory something like this , each main cluster has children like broker. Now how do i run any tasks against perticular group.broker. When we pass the group with --limit it does not work it runs on all broker. Also main playbook has hosts:all in it

Re: [ansible-project] how to run perticular dependency role for specific host group

2024-04-19 Thread Sameer Modak
Thanks Brian. so there is no possibility to achieve with dependencies ryt?? On Thursday, April 18, 2024 at 8:55:49 PM UTC+5:30 Brian Coca wrote: > Don't use dependencies, use include_role and make it conditional > > -- > -- > Brian Coca (he/him/yo) > > -- You received this message

[ansible-project] how to run perticular dependency role for specific host group

2024-04-18 Thread Sameer Modak
Hello Team, We have below grafana agent play.yaml and inside dependency we have mentioned below content now issue is kafka_exporter role runs on all hosts. We want only to run on broker host how to achieve it?? grafana-agent-play.yaml - name: "GRAgent Play" hosts: all:!localhost

Re: Qemu for TC377

2024-04-16 Thread Sameer Kalliadan Poyil
o Qemu instances or two TSIM instances running similar OS or different OS? I need to do prototype testing RPMSg communication between MCU and SOC using external physical UART/SPI which can be tested using vritual UART using two qemu instances. Regards, Sameer On Mon, Apr 15, 2024 at 7:51 A

Re: Qemu for TC377

2024-04-16 Thread Sameer Kalliadan Poyil
o Qemu instances or two TSIM instances running similar OS or different OS? I need to do prototype testing RPMSg communication between MCU and SOC using external physical UART/SPI which can be tested using vritual UART using two qemu instances. Regards, Sameer On Mon, Apr 15, 2024 at 7:51 A

Re: Update inventory when make return

2024-04-13 Thread Sameer Alwosaby
I found the issues .When we create return to the vendor, should select "Y" in "needs inventory receive" filed, then auto purchase return created and inventory updated , But when we should select "N" in "needs inventory receive" filed for which cases On Sa

Qemu for TC377

2024-04-13 Thread Sameer Kalliadan Poyil
is the latest version of qemu i have , I didn't download 9.0 [image: image.png] Regards Sameer

Qemu for TC377

2024-04-13 Thread Sameer Kalliadan Poyil
is the latest version of qemu i have , I didn't download 9.0 [image: image.png] Regards Sameer

Update inventory when make return

2024-04-12 Thread Sameer Alwosaby
. Is there any process need to do after return and when inventory updateplease can you guide me. Thanks Sameer

Re: [lwip-users] Basic TCP server problem

2024-04-11 Thread Sameer Ahmad
Hello again, I forgot to attach the tcpdump file and also the lwipopts file. Also some extra information from LWIP Stats, however this also does not show any issues. This info comes from a breakpoint in tcp_server_send when an invalid packet comes in due to the slow response previously. MEMP

[lwip-users] Basic TCP server problem

2024-04-11 Thread Sameer Ahmad
Hello, I am new to LWIP and have been working on a TCP server on my board with a STM32F429ZI and my PHY is a DP83848C. The LWIP version being used is v2.1.2. I am using raw API and copied the echo server example that is provided and have changed the tcp_server_send function but I not sure if this

[AI] Assistance requested for a Phd research project

2024-04-07 Thread Sameer
al details of the respondents shall be kept confidential. We Thank you for your valuable contribution to the same and spending time on the questionnaire and sharing your honest responses. Regards, Nikita V Raut https://forms.gle/YGR4FqjTPUA9LbZZA -- Regards Sameer Latey -- Disclaimer: 1. Contents of

[clang] [llvm] [clang][HLSL][SPRI-V] Add convergence intrinsics (PR #80680)

2024-03-28 Thread Sameer Sahasrabuddhe via cfe-commits
Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= Message-ID: In-Reply-To: https://github.com/ssahasra approved this pull

[clang] [llvm] [clang][HLSL][SPRI-V] Add convergence intrinsics (PR #80680)

2024-03-28 Thread Sameer Sahasrabuddhe via cfe-commits
Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= Message-ID: In-Reply-To: https://github.com/ssahasra edited

[clang] [llvm] [clang][HLSL][SPRI-V] Add convergence intrinsics (PR #80680)

2024-03-28 Thread Sameer Sahasrabuddhe via cfe-commits
Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= Message-ID: In-Reply-To: @@ -1130,8 +1130,92 @@ struct BitTest { static BitTest

[clang] [llvm] [clang][HLSL][SPRI-V] Add convergence intrinsics (PR #80680)

2024-03-28 Thread Sameer Sahasrabuddhe via cfe-commits
Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= , Nathan =?utf-8?q?Gau=C3=ABr?= Message-ID: In-Reply-To: @@ -1130,8 +1130,92 @@ struct

[clang] [llvm] [clang][HLSL][SPRI-V] Add convergence intrinsics (PR #80680)

2024-03-28 Thread Sameer Sahasrabuddhe via cfe-commits
Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= Message-ID: In-Reply-To: @@ -1130,8 +1130,92 @@ struct BitTest { static BitTest

[clang] [llvm] [clang][HLSL][SPRI-V] Add convergence intrinsics (PR #80680)

2024-03-28 Thread Sameer Sahasrabuddhe via cfe-commits
Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= Message-ID: In-Reply-To: https://github.com/ssahasra commented: LGTM, with a few nits. For the record, I

what is expected date for apache ofbiz 24.0.0

2024-03-22 Thread Sameer Alwosaby
what is expected date for apache ofbiz 24.0.0?

libpq behavior with hostname with multiple addresses and target_session_attrs=primary

2024-03-18 Thread Sameer M. Deshpande
e or read only etc… Many thanks in advance, Regards Sameer Deshpande

[AI] Computer Literacy Quiz for VI ladies organised by Snehankit Helpline

2024-03-16 Thread Sameer
your knowledge related to basic computers. Do join for an experience with fun. Google form link to register: https://docs.google.com/forms/d/e/1FAIpQLSety2xkaTRBJFngDW1Ve1J-8itUKErCXtLJKVeHo3XUtH_OCQ/viewform -- Regards Sameer Latey -- Disclaimer: 1. Contents of the mails, factual, or otherwise

Re: Data Migration

2024-03-15 Thread Sameer Alwosaby
For 24 version also if you going to improve user interfaces to be more interactive special on mobile phone . On Tue, Mar 12, 2024, 12:06 PM Jacques Le Roux wrote: > It's the privilege of mature projects, less updates ;) > > Le 12/03/2024 à 09:51, Ravee Bandaru a écrit : > > Hello Jac. > > > >

[Bug 2043917] Re: Xfce4-panel crashes & disappears after removing snap app's launcher icons

2024-03-12 Thread Sameer Sharma
Cold-shouldered. ** Changed in: xfce4-panel (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2043917 Title: Xfce4-panel crashes & disappears after removing snap

[clang] [llvm] [clang][HLSL][SPRI-V] Add convergence intrinsics (PR #80680)

2024-03-12 Thread Sameer Sahasrabuddhe via cfe-commits
Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= , Nathan =?utf-8?q?Gauër?= Message-ID: In-Reply-To: @@ -1130,8 +1130,96 @@ struct BitTest { static BitTest decodeBitTestBuiltin(unsigned BuiltinID); }; + +// Returns the first convergence

[Bug 2056548] Re: fwupd metadata bug due to outdated version in Ubuntu 22.04 repositories

2024-03-11 Thread Sameer Sharma
I think focal should also be included as it has one year left for maintenance updates and also has the same problem. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2056548 Title: fwupd metadata bug

[Desktop-packages] [Bug 2056209] [NEW] Incorrect Info In About Section

2024-03-05 Thread Sameer Sharma
Public bug reported: In Ubuntu 20.04.6 , the control-panel's About Section reports my memory to be 7.5GB instead of 8GB and the gnome version is mentioned as 3.36.8 which i believe should be 3.36.9 as the gnome-shell package is at 3.36.9 ? P.S. Storage is reported as 256.1 GB which is correctly

[Bug 2056209] [NEW] Incorrect Info In About Section

2024-03-05 Thread Sameer Sharma
Public bug reported: In Ubuntu 20.04.6 , the control-panel's About Section reports my memory to be 7.5GB instead of 8GB and the gnome version is mentioned as 3.36.8 which i believe should be 3.36.9 as the gnome-shell package is at 3.36.9 ? P.S. Storage is reported as 256.1 GB which is correctly

[Bug 2056209] [NEW] Incorrect Info In About Section

2024-03-05 Thread Sameer Sharma
Public bug reported: In Ubuntu 20.04.6 , the control-panel's About Section reports my memory to be 7.5GB instead of 8GB and the gnome version is mentioned as 3.36.8 which i believe should be 3.36.9 as the gnome-shell package is at 3.36.9 ? P.S. Storage is reported as 256.1 GB which is correctly

[Bug 2028548] Re: fwupd too old to get and install releases for UEFI dbx

2024-03-05 Thread Sameer Sharma
I installed the snap variant and received the update, apt version doesn't provide updates but the snap one does. ` snap install fwupd ` -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2028548 Title:

From where we can add/update currencies and countries and list of ship costs.

2024-03-04 Thread Sameer Alwosaby
Hello Community, I am new to the apache ofbiz, From where we can add/update currencies and countries and list of ship costs. Is there any setup or need to create ofbiz Plugin. Thanks Sameer alwosaby

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-03-02 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -3616,6 +3617,12 @@ unsigned FunctionDecl::getBuiltinID(bool ConsiderWrapperFunctions) const { if (!ConsiderWrapperFunctions && getStorageClass() == SC_Static) return 0; + // AMDGCN implementation supports printf as a builtin + // for OpenCL + if

RE: DPDK Pdump tool is not able to attach to DPDK test pmd primary application

2024-02-29 Thread Sameer Vaze
as mandatory arguments. I tried specifying an interface as well and saw the same issue. Thanks Sameer Vaze -Original Message- From: Stephen Hemminger Sent: Saturday, February 17, 2024 10:00 AM To: Sameer Vaze Cc: users@dpdk.org Subject: Re: DPDK Pdump tool is not able to attach to DPDK test pmd

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-02-25 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra approved this pull request. https://github.com/llvm/llvm-project/pull/72556 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[AI] Voting Procedures - Demo organised by Snehankit Helpline with Election Commission

2024-02-22 Thread Sameer
://docs.google.com/forms/d/e/1FAIpQLSfYRXMwyIwivFUsT_pEv3EvGOlp9llqW6LC9Ngno9h4PojDXg/viewform for more information: contact: Nupur Joshi: 9869730454 Thanking you For Snehankit Helpline Parimala Bhat Chairperson -- Regards Sameer Latey -- Disclaimer: 1. Contents of the mails, factual, or otherwise, reflect

Re: [query] filter our google ads uac data

2024-02-22 Thread Sameer Patil
Thank you for confirmation! I am good to proceed now. On Thursday, February 22, 2024 at 6:57:00 PM UTC+5:30 Google Ads API Forum Advisor wrote: > Hi Sameer, > > Thank you for reaching out to the Google Ads API support team. > > After reviewing your concern, I understand that

[Query] Filter our Google Ads UAC Data

2024-02-22 Thread Sameer Patil
- APP_CAMPAIGN_FOR_PRE_REGISTRATION Ref: https://developers.google.com/google-ads/api/reference/rpc/v15/AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType Thanks, Sameer -- Privileged/Confidential Information may be contained in this message. If you are not the addressee indicated in this message (or responsible

[AI] Cookery compeitition organised by Snehankit Helpline

2024-02-21 Thread Sameer
url In case of difficulties or for additional clarification, kindly contact the organisers on 9987114680. -- Regards Sameer Latey -- Disclaimer: 1. Contents of the mails, factual, or otherwise, reflect the thinking of the person sending the mail and AI in no way relates itself to its veracity; 2. AI ca

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-02-20 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -199,15 +214,31 @@ RValue CodeGenFunction::EmitAMDGPUDevicePrintfCallExpr(const CallExpr *E) { } llvm::Value *Arg = A.getRValue(*this).getScalarVal(); +if (isString(A.getType().getTypePtr()) && CGM.getLangOpts().OpenCL) ssahasra wrote: The

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-02-20 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -198,15 +213,31 @@ RValue CodeGenFunction::EmitAMDGPUDevicePrintfCallExpr(const CallExpr *E) { } llvm::Value *Arg = A.getRValue(*this).getScalarVal(); +if (isString(A.getType().getTypePtr()) && CGM.getLangOpts().OpenCL) + Arg =

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-02-20 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -178,17 +181,29 @@ RValue CodeGenFunction::EmitNVPTXDevicePrintfCallExpr(const CallExpr *E) { E, this, GetVprintfDeclaration(CGM.getModule()), false); } +// Deterimines if an argument is a string +static bool isString(const clang::Type *argXTy) {

DPDK Pdump tool is not able to attach to DPDK test pmd primary application

2024-02-17 Thread Sameer Vaze
--proc-type=secondary --file-prefix=test -d /path/to/pmd -- --pdump 'port=0,queue=1,rx-dev=./rx.pcap,tx-dev=./tx.pcap' DPDK version: 22.11.1 Is this a known issue? Is there any known fix for this? Thanks Sameer Vaze

[systemsettings] [Bug 481156] New: When display is in Hi DPI mode, cannot press "Apply" in Display Configuration module

2024-02-09 Thread Sameer Dhar
https://bugs.kde.org/show_bug.cgi?id=481156 Bug ID: 481156 Summary: When display is in Hi DPI mode, cannot press "Apply" in Display Configuration module Classification: Applications Product: systemsettings Version: 5.24.6

Re: GOing to FOSDEM - any OFBiz devs/users that would like to meet?

2024-02-01 Thread Sameer Alwosaby
،sorry, I am beginning what is mean FOSDEM؟ On Thu, Feb 1, 2024, 5:47 PM Eugen Stan wrote: > Hello, > > I'm going to FOSDEM. I would like to meet OFBiz users / devs if any are > in the area / participating to FOSDEM. > > Please reply privatly to the email or via Mastodon: @ieu...@mas.to > >

Re: CVE-2023-51467-release18.12.11

2024-01-25 Thread Sameer Alwosaby
Where we can find 18.12.12 version please? On Thu, 18 Jan 2024, 13:42 Jacques Le Roux, wrote: > Hi Vikas, > > There is currently a vote for the 18.12.12 version. Better wait for this > new version > > HTH > > Jacques > > Le 12/01/2024 à 08:21, Vikas Jaiswal a écrit : > > Hello, > >

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-01-22 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -198,15 +213,31 @@ RValue CodeGenFunction::EmitAMDGPUDevicePrintfCallExpr(const CallExpr *E) { } llvm::Value *Arg = A.getRValue(*this).getScalarVal(); +if (isString(A.getType().getTypePtr()) && CGM.getLangOpts().OpenCL) + Arg =

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-01-21 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -168,20 +174,48 @@ static Value *appendString(IRBuilder<> , Value *Desc, Value *Arg, return callAppendStringN(Builder, Desc, Arg, Length, IsLast); } +static Value *appendVectorArg(IRBuilder<> , Value *Desc, Value *Arg, + bool IsLast, bool

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-01-21 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -170,20 +173,49 @@ static Value *appendString(IRBuilder<> , Value *Desc, Value *Arg, return callAppendStringN(Builder, Desc, Arg, Length, IsLast); } +static Value *appendVectorArg(IRBuilder<> , Value *Desc, Value *Arg, + bool IsLast, bool

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-01-21 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -4742,6 +4742,16 @@ void Clang::ConstructJob(Compilation , const JobAction , Args.ClaimAllArgs(options::OPT_gen_cdb_fragment_path); } + if (TC.getTriple().isAMDGPU() && types::isOpenCL(Input.getType())) { +if (Args.getLastArg(options::OPT_mprintf_kind_EQ)) { +

[llvm] [clang] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-01-21 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -26,28 +26,34 @@ using namespace llvm; #define DEBUG_TYPE "amdgpu-emit-printf" -static Value *fitArgInto64Bits(IRBuilder<> , Value *Arg) { +static Value *fitArgInto64Bits(IRBuilder<> , Value *Arg, + bool IsBuffered) { + const DataLayout =

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-01-21 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra requested changes to this pull request. https://github.com/llvm/llvm-project/pull/72556 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[llvm] [clang] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2024-01-21 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra edited https://github.com/llvm/llvm-project/pull/72556 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[Breeze] [Bug 478719] New: Add a battery indicator to the bluetooth applet

2023-12-19 Thread Sameer Singh
https://bugs.kde.org/show_bug.cgi?id=478719 Bug ID: 478719 Summary: Add a battery indicator to the bluetooth applet Classification: Plasma Product: Breeze Version: unspecified Platform: Other OS: Linux Status:

[ansible-project] how to encrypt ssh_pass password without asking any more password

2023-12-13 Thread Sameer Modak
Hello Team, how to encrypt ssh_pass password without asking any more password. I dont want to type password everytime i run the ad hoc command like ansible -i hosts.yaml -m shell -a "ulimit -a". I dont want to put the password everytime i just want to hide or obscure or salt the below

Re: [AI] Which is the best bank with regard to accessibility

2023-12-08 Thread Sameer
HDFC Bank net banking is fully accessible for performing tasks like checking balances, making third-party payments etc. Regards Sameer Latey On 08-12-2023 03:19 pm, Yasir Jan wrote: Any view about HDFC BANK On Fri, Dec 8, 2023, 1:42 PM Sunil Sangtani. wrote: you can think of going

[llvm] [clang] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2023-12-04 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -4742,6 +4742,16 @@ void Clang::ConstructJob(Compilation , const JobAction , Args.ClaimAllArgs(options::OPT_gen_cdb_fragment_path); } + if (TC.getTriple().isAMDGPU() && types::isOpenCL(Input.getType())) { +if (Args.getLastArg(options::OPT_mprintf_kind_EQ)) { +

[llvm] [clang] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2023-12-04 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -4742,6 +4742,16 @@ void Clang::ConstructJob(Compilation , const JobAction , Args.ClaimAllArgs(options::OPT_gen_cdb_fragment_path); } + if (TC.getTriple().isAMDGPU() && types::isOpenCL(Input.getType())) { +if (Args.getLastArg(options::OPT_mprintf_kind_EQ)) { +

[clang] [llvm] [AMDGPU] Enable OpenCL hostcall printf (WIP) (PR #72556)

2023-12-04 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -170,20 +173,49 @@ static Value *appendString(IRBuilder<> , Value *Desc, Value *Arg, return callAppendStringN(Builder, Desc, Arg, Length, IsLast); } +static Value *appendVectorArg(IRBuilder<> , Value *Desc, Value *Arg, + bool IsLast, bool

[flang] [libcxx] [llvm] [libc] [compiler-rt] [clang-tools-extra] [clang] [clang][AMDGPU] fix the return type for ballot (PR #73906)

2023-12-04 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra closed https://github.com/llvm/llvm-project/pull/73906 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[libcxx] [compiler-rt] [clang] [libc] [clang-tools-extra] [flang] [llvm] [clang][AMDGPU] fix the return type for ballot (PR #73906)

2023-12-03 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra updated https://github.com/llvm/llvm-project/pull/73906 >From 8ecb6310a4912de50628cf3db5ff8488fa919bb1 Mon Sep 17 00:00:00 2001 From: Sameer Sahasrabuddhe Date: Fri, 1 Dec 2023 14:24:30 +0530 Subject: [PATCH 1/2] [clang][AMDGPU] precommit test for ballot on Wind

[clang] [clang][AMDGPU] precommit test for ballot on Windows (PR #73920)

2023-12-03 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra closed https://github.com/llvm/llvm-project/pull/73920 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [AMDGPU] Treat printf as builtin for OpenCL (PR #72554)

2023-12-01 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -406,5 +410,9 @@ TARGET_BUILTIN(__builtin_amdgcn_cvt_pk_fp8_f32, "iffiIb", "nc", "fp8-insts") TARGET_BUILTIN(__builtin_amdgcn_cvt_sr_bf8_f32, "ifiiIi", "nc", "fp8-insts") TARGET_BUILTIN(__builtin_amdgcn_cvt_sr_fp8_f32, "ifiiIi", "nc", "fp8-insts") +// OpenCL

[clang] [clang][AMDGPU] precommit test for ballot on Windows (PR #73920)

2023-12-01 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -0,0 +1,27 @@ +// REQUIRES: amdgpu-registered-target +// XFAIL: * +// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -aux-triple x86_64-pc-windows-msvc -target-cpu gfx900 -x hip -emit-llvm -fcuda-is-device -o - %s | FileCheck %s +// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa

[clang] [clang][AMDGPU] fix the return type for ballot (PR #73906)

2023-12-01 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -0,0 +1,15 @@ +// REQUIRES: amdgpu-registered-target +// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -target-cpu gfx900 -x hip -emit-llvm -fcuda-is-device -o - %s | FileCheck %s +// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -target-cpu gfx900 -x hip -S -fcuda-is-device -o - %s

[clang] [clang][AMDGPU] fix the return type for ballot (PR #73906)

2023-12-01 Thread Sameer Sahasrabuddhe via cfe-commits
@@ -150,8 +150,8 @@ BUILTIN(__builtin_amdgcn_mqsad_u32_u8, "V4UiWUiUiV4Ui", "nc") // Ballot builtins. //===--===// -TARGET_BUILTIN(__builtin_amdgcn_ballot_w32, "Uib", "nc", "wavefrontsize32")

[clang] [clang][AMDGPU] fix the return type for ballot (PR #73906)

2023-12-01 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra updated https://github.com/llvm/llvm-project/pull/73906 >From 8ecb6310a4912de50628cf3db5ff8488fa919bb1 Mon Sep 17 00:00:00 2001 From: Sameer Sahasrabuddhe Date: Fri, 1 Dec 2023 14:24:30 +0530 Subject: [PATCH 1/2] [clang][AMDGPU] precommit test for ballot on Wind

[clang] [clang][AMDGPU] precommit test for ballot on Windows (PR #73920)

2023-12-01 Thread Sameer Sahasrabuddhe via cfe-commits
https://github.com/ssahasra updated https://github.com/llvm/llvm-project/pull/73920 >From 8ecb6310a4912de50628cf3db5ff8488fa919bb1 Mon Sep 17 00:00:00 2001 From: Sameer Sahasrabuddhe Date: Fri, 1 Dec 2023 14:24:30 +0530 Subject: [PATCH] [clang][AMDGPU] precommit test for ballot on Wind

  1   2   3   4   5   6   7   8   9   10   >