Displaying 9 results from an estimated 9 matches for "zakharin".
2019 Jul 17
4
[RFC] change .gitignore for monorepo
James, we are using an *unmodified* llvm-project (master llorg), and just add some extra projects from our internal repos to the top-level.
Thanks,
Slava
From: James Y Knight [mailto:jyknight at google.com]
Sent: Wednesday, July 17, 2019 11:19 AM
To: Zakharin, Vyacheslav P <vyacheslav.p.zakharin at intel.com>
Cc: llvm-dev <llvm-dev at lists.llvm.org>
Subject: Re: [llvm-dev] [RFC] change .gitignore for monorepo
On Wed, Jul 17, 2019 at 12:45 PM Zakharin, Vyacheslav P via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm...
2018 Nov 14
2
llvm.rint specification
...this. If it is not, then I must be missing something.
I am sorry if this has been described somewhere in the RFC for the constrained FP intrinsics, which I haven’t read yet.
Thanks,
Slava
From: Cameron McInally [mailto:cameron.mcinally at nyu.edu]
Sent: Wednesday, November 14, 2018 9:35 AM
To: Zakharin, Vyacheslav P <vyacheslav.p.zakharin at intel.com>
Cc: LLVM Developers Mailing List <llvm-dev at lists.llvm.org>
Subject: Re: [llvm-dev] llvm.rint specification
On Tue, Nov 13, 2018 at 7:56 PM Zakharin, Vyacheslav P via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lis...
2019 Jul 17
6
[RFC] change .gitignore for monorepo
Hello,
My team is using some non-llvm projects along with llvm-project monorepo. The projects are checked out to the top level of llvm-project, and 'git status' would complain about them unless we add them to .gitignore. We do not really want to change llorg's .gitignore on our side, so may we propose changing llorg's .gitignore to ignore all top-level files/directories that are
2019 Feb 06
2
right way for setting PreserveLCSSA with new pass manager
Hi,
mustPreserveAnalysisID(LCSSAID) cannot be used with the new pass manager, so what is the right way for querying it? FunctionAnalysisManager::getCachedResult<LCSSAPass>(F) will not work, since LCSSAPass does not have a result. Moreover, it is not an analysis :)
Thanks,
Slava
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2018 Nov 14
2
llvm.rint specification
Hello,
I believe llvm.rint description in LangRef is not quite complete.
Llvm seems to map math.h:rint() call to llvm.rint intrinsic, and the LangRef says that the result of llvm.rint matches the result of libm rint() call. Next, LangRef states that llvm.rint "returns the operand rounded to the nearest integer."
Shouldn't the specification also say that "the actual rounding
2019 Jul 01
3
Tablegen ridiculously slow when compiling for Debug
If someone can manage it, it wouldn't be a bad thing - obviously open up
more parallelism (I don't know how much of LLVM can be built before you hit
everything that needs tblgen run - I guess libSupport and some other bits)
On Mon, Jul 1, 2019 at 12:54 PM Zakharin, Vyacheslav P via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> [resending to the whole list]
>
>
>
> I wonder if we can stop rebuilding TD files unconditionally, i.e. generate
> dependencies for TD files based on include directives and just allow the
> build system do...
2019 Jul 09
2
Tablegen ridiculously slow when compiling for Debug
...ldn't be a bad thing - obviously
>>> open up more parallelism (I don't know how much of LLVM can be built
>>> before you hit everything that needs tblgen run - I guess libSupport
>>> and some other bits)
>>>
>>> On Mon, Jul 1, 2019 at 12:54 PM Zakharin, Vyacheslav P via llvm-dev
>>> <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote:
>>>
>>> [resending to the whole list]
>>>
>>> I wonder if we can stop rebuilding TD files unconditionally, i.e.
>>> g...
2019 Jul 02
4
Tablegen ridiculously slow when compiling for Debug
...an manage it, it wouldn't be a bad thing - obviously open
>> up more parallelism (I don't know how much of LLVM can be built
>> before you hit everything that needs tblgen run - I guess libSupport
>> and some other bits)
>>
>> On Mon, Jul 1, 2019 at 12:54 PM Zakharin, Vyacheslav P via llvm-dev
>> <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote:
>>
>> [resending to the whole list]
>>
>> I wonder if we can stop rebuilding TD files unconditionally, i.e.
>> generate dependencies for...
2019 Jul 01
2
Tablegen ridiculously slow when compiling for Debug
Hey Joan,
When looking for build support it is really useful to include a bunch of information about your build up front. Knowing that you are on macOS, and using the Xcode generator are really useful.
On macOS, BUILD_SHARED_LIBS won’t really help much because the default linker (ld64) is pretty good. Using an IDE generator and setting LLVM_USE_OPTIMIZED_TABLEGEN will kill your release builds.