https://github.com/yxsamliu updated
https://github.com/llvm/llvm-project/pull/80190
>From f3ce754c63a2bd49f5faded6596b17d0aa3f44e1 Mon Sep 17 00:00:00 2001
From: "Yaxun (Sam) Liu"
Date: Wed, 31 Jan 2024 15:14:10 -0500
Subject: [PATCH] [HIP] fix HIP detection for /usr
Skip checking HIP version
yxsamliu wrote:
> Do we have any tests for this kind of stuff? We really should have some mock
> ROCm installation in one of the `Inputs/` directories and then do
> `--rocm-path=` or something.
test added
https://github.com/llvm/llvm-project/pull/80190
https://github.com/yxsamliu closed
https://github.com/llvm/llvm-project/pull/80190
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/yxsamliu created
https://github.com/llvm/llvm-project/pull/80322
AMDGPU does not support unaligned atomics, therefore make the warning an error.
This patch is transferred from
https://reviews.llvm.org/D99201
>From a5d78d7439d58eefc45a6ea694f1e4d941de9d10 Mon Sep 17 00:00:00
https://github.com/yxsamliu updated
https://github.com/llvm/llvm-project/pull/80322
>From 91c9113a986c90179d36ca33c6d4559cb946f746 Mon Sep 17 00:00:00 2001
From: "Yaxun (Sam) Liu"
Date: Thu, 1 Feb 2024 13:44:03 -0500
Subject: [PATCH] [AMDGPU] Diagnose unaligned atomic for amdgpu
AMDGPU does no
yxsamliu wrote:
> You may want to check that we can still disable the error with
> `-Wno-error=atomic-alignment` passed via top-level options.
>
> Other than that LGTM.
Good point. Added a test
https://github.com/llvm/llvm-project/pull/80322
___
cfe
https://github.com/yxsamliu updated
https://github.com/llvm/llvm-project/pull/80322
>From 8cc0ecfe6723b7eb363a5eef2cd4b8630e6a2ac8 Mon Sep 17 00:00:00 2001
From: "Yaxun (Sam) Liu"
Date: Thu, 1 Feb 2024 13:44:03 -0500
Subject: [PATCH] [AMDGPU] Diagnose unaligned atomic for amdgpu
AMDGPU does no
https://github.com/yxsamliu updated
https://github.com/llvm/llvm-project/pull/80322
>From c2b559f5853a50a54958f2d5f2410a94ca0f722e Mon Sep 17 00:00:00 2001
From: "Yaxun (Sam) Liu"
Date: Thu, 1 Feb 2024 13:44:03 -0500
Subject: [PATCH] [AMDGPU] Diagnose unaligned atomic for amdgpu
AMDGPU does no
https://github.com/yxsamliu closed
https://github.com/llvm/llvm-project/pull/80322
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/yxsamliu approved this pull request.
LGTM. Thanks
https://github.com/llvm/llvm-project/pull/68515
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
yxsamliu wrote:
> It looks reasonable to me, although I'm not really an AMDGPU person. /me
> summons @arsenm ?
AMDGPU backend relies on LLVM passes to translate printf at IR level.
__builtin_printf and printf should be equivalent other than the name.
https://github.com/llvm/llvm-project/pull/
@@ -274,30 +274,31 @@ void AMDGPUTargetInfo::getTargetDefines(const LangOptions
&Opts,
else
Builder.defineMacro("__R600__");
- if (GPUKind != llvm::AMDGPU::GK_NONE) {
-StringRef CanonName = isAMDGCN(getTriple()) ?
- getArchNameAMDGCN(GPUKind) : getArchNameR600
yxsamliu wrote:
LGTM. AFAIK only device libs compile OpenCL code without -mcpu. I don't think
it uses any of these predefined macros.
https://github.com/llvm/llvm-project/pull/79660
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists
yxsamliu wrote:
> This seems to have perturbed the HIP build.
> https://lab.llvm.org/staging/#/builders/22/builds/22
>
> The problem is that we used to set `__AMDGCN_WAVEFRONTSIZE` for the host
> compilation as well in a bunch of the wave function macros. I think that this
> is just poor prog
yxsamliu wrote:
> Reverted. I don't think there's a "proper" solution here since this seems to
> have leaked into the headers due to whoever set this up initially not
> properly setting these on the host. That seems to be endemic now, so the best
> we can do it just set it to some dummy values
yxsamliu wrote:
HIP host compilation can be identified by LangOpts.HIP && !LangOpts.CUDAIsDevice
https://github.com/llvm/llvm-project/pull/79660
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe
yxsamliu wrote:
> > An AMDGPU library function is not internalized and can be used to fullfill
> > calls generated by LLVM passes or instruction selection.
>
> I am confused by the description of "internalized". Do you refer to LTO
> internalization? You can leverage `llvm.used` to disable LTO
yxsamliu wrote:
> > > > An AMDGPU library function is not internalized and can be used to
> > > > fullfill calls generated by LLVM passes or instruction selection.
> > >
> > >
> > > I am confused by the description of "internalized". Do you refer to LTO
> > > internalization? You can leverage
@@ -2011,6 +2011,13 @@ def AMDGPUNumVGPR : InheritableAttr {
let Subjects = SubjectList<[Function], ErrorDiag, "kernel functions">;
}
+def AMDGPULibFun : InheritableAttr {
yxsamliu wrote:
will do
https://github.com/llvm/llvm-project/pull/74737
@@ -2693,6 +2693,17 @@ An error will be given if:
}];
}
+def AMDGPULibFunDocs : Documentation {
+ let Category = DocCatAMDGPUAttributes;
+ let Content = [{
+The ``amdgpu_lib_fun`` attribute can be applied to a function for AMDGPU target
+to indicate it is a library functio
https://github.com/yxsamliu updated
https://github.com/llvm/llvm-project/pull/74737
>From 4264e7e9c7f655f134623d113ba9dccc5564f4c3 Mon Sep 17 00:00:00 2001
From: "Yaxun (Sam) Liu"
Date: Thu, 7 Dec 2023 11:45:14 -0500
Subject: [PATCH] [AMDGPU] add function attrbute amdgpu-lib-fun
Add a function
yxsamliu wrote:
ping
https://github.com/llvm/llvm-project/pull/77359
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
yxsamliu wrote:
LGTM for amdgpu
https://github.com/llvm/llvm-project/pull/78759
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/yxsamliu approved this pull request.
https://github.com/llvm/llvm-project/pull/78915
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/yxsamliu approved this pull request.
https://github.com/llvm/llvm-project/pull/78333
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/yxsamliu created
https://github.com/llvm/llvm-project/pull/79026
OpenCL 1.2 kernel assumes uniform workgroup size. By default a function attr is
added to allow backend to do optimizations. These optimizations may cause UB if
such kernels are launched with non-uniform workgro
https://github.com/yxsamliu closed
https://github.com/llvm/llvm-project/pull/68126
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
yxsamliu wrote:
ping. we tested it on Windows and it is able to compile both C++ and HIP
without issues.
https://github.com/llvm/llvm-project/pull/68921
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/lis
https://github.com/yxsamliu closed
https://github.com/llvm/llvm-project/pull/68921
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: Yaxun (Sam) Liu
Date: 2023-10-19T12:56:06-04:00
New Revision: fdfe0b095f629a59a361813231fb5a6de4ef7ef9
URL:
https://github.com/llvm/llvm-project/commit/fdfe0b095f629a59a361813231fb5a6de4ef7ef9
DIFF:
https://github.com/llvm/llvm-project/commit/fdfe0b095f629a59a361813231fb5a6de4ef7ef9.dif
yxsamliu wrote:
[AMD Official Use Only - General]
Will fix it now. Thanks.
Sam
From: Nico Weber ***@***.***>
Sent: Thursday, October 19, 2023 8:03 PM
To: llvm/llvm-project ***@***.***>
Cc: Liu, Yaxun (Sam) ***@***.***>; State change ***@***.***>
Subject: Re: [llvm/llvm-project] Let clang-cl su
Author: Yaxun (Sam) Liu
Date: 2023-10-19T21:48:05-04:00
New Revision: 9d10fbbb299eae4a63f1028274e2ffe92bf8e75a
URL:
https://github.com/llvm/llvm-project/commit/9d10fbbb299eae4a63f1028274e2ffe92bf8e75a
DIFF:
https://github.com/llvm/llvm-project/commit/9d10fbbb299eae4a63f1028274e2ffe92bf8e75a.dif
yxsamliu wrote:
[AMD Official Use Only - General]
Fixed by 9d10fbbb299eae4a63f1028274e2ffe92bf8e75a
From: Nico Weber ***@***.***>
Sent: Thursday, October 19, 2023 8:03 PM
To: llvm/llvm-project ***@***.***>
Cc: Liu, Yaxun (Sam) ***@***.***>; State change ***@***.***>
Subject: Re: [llvm/llvm-proj
yxsamliu wrote:
[AMD Official Use Only - General]
Sorry I missed this failure.
Will fix it now.
Sam
From: Rainer Orth ***@***.***>
Sent: Monday, October 23, 2023 5:45 PM
To: llvm/llvm-project ***@***.***>
Cc: Liu, Yaxun (Sam) ***@***.***>; State change ***@***.***>
Subject: Re: [llvm/llvm-pro
Author: Yaxun (Sam) Liu
Date: 2023-10-23T18:21:36-04:00
New Revision: 278d5575643f27427175e647dab98de816953943
URL:
https://github.com/llvm/llvm-project/commit/278d5575643f27427175e647dab98de816953943
DIFF:
https://github.com/llvm/llvm-project/commit/278d5575643f27427175e647dab98de816953943.dif
yxsamliu wrote:
> @yxsamliu I've just raised #70055 which fixes an issue with the new test
> here. Perhaps it might also allow you to remove the exclusion for
> `system-darwin`?
Yes it should allow it to remove exclusion of system-darwin. Thanks
https://github.com/llvm/llvm-project/pull/68921
yxsamliu wrote:
can you remove // REQUIRES: !system-darwin ? Thanks.
https://github.com/llvm/llvm-project/pull/70055
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/yxsamliu approved this pull request.
LGTM. Thanks.
https://github.com/llvm/llvm-project/pull/70055
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
yxsamliu wrote:
Maybe a clang documentation can be added for this generic offloading toolchain
for OpenMP/CUDA/HIP. Could be a brief description about the offloading entries
and registration mechanism in the beginning then buffy it up later.
https://github.com/llvm/llvm-project/pull/70116
https://github.com/yxsamliu approved this pull request.
LGTM. Thanks.
https://github.com/llvm/llvm-project/pull/70116
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/yxsamliu created
https://github.com/llvm/llvm-project/pull/70369
Currently std::is_invocable does not work for CUDA/HIP since its implementation
requires checking whether a function is invocable in the context of a
synthesized host function.
In general, to make work with C
https://github.com/yxsamliu edited
https://github.com/llvm/llvm-project/pull/70369
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -283,12 +283,18 @@ set(cuda_wrapper_files
cuda_wrappers/cmath
cuda_wrappers/complex
cuda_wrappers/new
+ cuda_wrappers/type_traits
)
set(cuda_wrapper_bits_files
cuda_wrappers/bits/shared_ptr_base.h
cuda_wrappers/bits/basic_string.h
cuda_wrappers/bits/basic
https://github.com/yxsamliu updated
https://github.com/llvm/llvm-project/pull/70369
>From 8199b47f5b84c6bdac9ab373a4e138ad9246d033 Mon Sep 17 00:00:00 2001
From: "Yaxun (Sam) Liu"
Date: Thu, 26 Oct 2023 15:09:49 -0400
Subject: [PATCH 1/2] [CUDA][HIP] Fix std::is_invocable
Currently std::is_inv
https://github.com/yxsamliu edited
https://github.com/llvm/llvm-project/pull/70369
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -283,12 +283,18 @@ set(cuda_wrapper_files
cuda_wrappers/cmath
cuda_wrappers/complex
cuda_wrappers/new
+ cuda_wrappers/type_traits
)
set(cuda_wrapper_bits_files
cuda_wrappers/bits/shared_ptr_base.h
cuda_wrappers/bits/basic_string.h
cuda_wrappers/bits/basic
Author: yaxunl
Date: Thu Aug 22 04:18:59 2019
New Revision: 369641
URL: http://llvm.org/viewvc/llvm-project?rev=369641&view=rev
Log:
[OpenCL] Fix declaration of enqueue_marker
Differential Revision: https://reviews.llvm.org/D66512
Modified:
cfe/trunk/lib/Headers/opencl-c.h
Modified: cfe/tru
Author: yaxunl
Date: Tue Sep 3 11:50:24 2019
New Revision: 370808
URL: http://llvm.org/viewvc/llvm-project?rev=370808&view=rev
Log:
[AMDGPU] Set default flat work group size to (1,256) for HIP
Differential Revision: https://reviews.llvm.org/D67048
Modified:
cfe/trunk/lib/CodeGen/TargetInfo.
Author: yaxunl
Date: Fri Aug 4 11:16:31 2017
New Revision: 310082
URL: http://llvm.org/viewvc/llvm-project?rev=310082&view=rev
Log:
Add OpenCL 2.0 atomic builtin functions as Clang builtin
OpenCL 2.0 atomic builtin functions have a scope argument which is ideally
represented as synchronization s
Author: yaxunl
Date: Fri Aug 4 19:23:47 2017
New Revision: 310160
URL: http://llvm.org/viewvc/llvm-project?rev=310160&view=rev
Log:
[OpenCL] Remove extra select functions from opencl-c.h
OpenCL spec v2.0 s6.13.6:
gentype select (gentype a,
gentype b,
igentype c)
gentype select (gentype a,
gent
Author: yaxunl
Date: Tue Aug 15 09:02:49 2017
New Revision: 310924
URL: http://llvm.org/viewvc/llvm-project?rev=310924&view=rev
Log:
[OpenCL] Support variable memory scope in atomic builtins
Differential Revision: https://reviews.llvm.org/D36580
Modified:
cfe/trunk/include/clang/AST/Expr.h
Author: yaxunl
Date: Tue Aug 15 09:30:31 2017
New Revision: 310927
URL: http://llvm.org/viewvc/llvm-project?rev=310927&view=rev
Log:
Remove -finclude-default-header in OpenCL atomic tests
Differential Revision: https://reviews.llvm.org/D36676
Modified:
cfe/trunk/test/CodeGenOpenCL/atomic-ops
Author: yaxunl
Date: Tue Aug 15 10:16:44 2017
New Revision: 310932
URL: http://llvm.org/viewvc/llvm-project?rev=310932&view=rev
Log:
Attempt to fix failure in CodeGenOpenCL/atomic-ops.cl
Modified:
cfe/trunk/test/CodeGenOpenCL/atomic-ops.cl
Modified: cfe/trunk/test/CodeGenOpenCL/atomic-ops.cl
Author: yaxunl
Date: Tue Aug 15 10:59:26 2017
New Revision: 310937
URL: http://llvm.org/viewvc/llvm-project?rev=310937&view=rev
Log:
Attempt to fix failure in CodeGenOpenCL/atomic-ops.cl again
Modified:
cfe/trunk/test/CodeGenOpenCL/atomic-ops.cl
Modified: cfe/trunk/test/CodeGenOpenCL/atomic-
Author: yaxunl
Date: Tue Aug 15 21:15:28 2017
New Revision: 310986
URL: http://llvm.org/viewvc/llvm-project?rev=310986&view=rev
Log:
Fix comments about __OPENCL_MEMORY_SCOPE_* macros
Modified:
cfe/trunk/lib/Frontend/InitPreprocessor.cpp
Modified: cfe/trunk/lib/Frontend/InitPreprocessor.cpp
U
Author: Yaxun (Sam) Liu
Date: 2019-12-27T11:29:04-05:00
New Revision: 134ef0fb4b92718477a1dc9da0118f9b2dd77237
URL:
https://github.com/llvm/llvm-project/commit/134ef0fb4b92718477a1dc9da0118f9b2dd77237
DIFF:
https://github.com/llvm/llvm-project/commit/134ef0fb4b92718477a1dc9da0118f9b2dd77237.dif
Author: Yaxun (Sam) Liu
Date: 2020-01-07T11:18:00-05:00
New Revision: 9f2d8b5c0cdb31c5617476575c03826274ecbd25
URL:
https://github.com/llvm/llvm-project/commit/9f2d8b5c0cdb31c5617476575c03826274ecbd25
DIFF:
https://github.com/llvm/llvm-project/commit/9f2d8b5c0cdb31c5617476575c03826274ecbd25.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-11T17:12:58-04:00
New Revision: ccb4124a4172bf2cb2e1cd7c253f0f1654fce294
URL:
https://github.com/llvm/llvm-project/commit/ccb4124a4172bf2cb2e1cd7c253f0f1654fce294
DIFF:
https://github.com/llvm/llvm-project/commit/ccb4124a4172bf2cb2e1cd7c253f0f1654fce294.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-11T17:57:36-04:00
New Revision: ee13ae030e21d584c72d384ea463896400ccee1c
URL:
https://github.com/llvm/llvm-project/commit/ee13ae030e21d584c72d384ea463896400ccee1c
DIFF:
https://github.com/llvm/llvm-project/commit/ee13ae030e21d584c72d384ea463896400ccee1c.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-16T17:35:28-04:00
New Revision: ee5519d323571c4a9a7d92cb817023c9b95334cd
URL:
https://github.com/llvm/llvm-project/commit/ee5519d323571c4a9a7d92cb817023c9b95334cd
DIFF:
https://github.com/llvm/llvm-project/commit/ee5519d323571c4a9a7d92cb817023c9b95334cd.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-17T11:30:42-04:00
New Revision: 40df06cdafc010002fc9cfe1dda73d689b7d27a6
URL:
https://github.com/llvm/llvm-project/commit/40df06cdafc010002fc9cfe1dda73d689b7d27a6
DIFF:
https://github.com/llvm/llvm-project/commit/40df06cdafc010002fc9cfe1dda73d689b7d27a6.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-17T11:51:09-04:00
New Revision: 7f1f89ec8d9944559042bb6d3b1132eabe3409de
URL:
https://github.com/llvm/llvm-project/commit/7f1f89ec8d9944559042bb6d3b1132eabe3409de
DIFF:
https://github.com/llvm/llvm-project/commit/7f1f89ec8d9944559042bb6d3b1132eabe3409de.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-17T13:55:31-04:00
New Revision: 772bd8a7d99b8db899f594d393986e4b6cd85aa1
URL:
https://github.com/llvm/llvm-project/commit/772bd8a7d99b8db899f594d393986e4b6cd85aa1
DIFF:
https://github.com/llvm/llvm-project/commit/772bd8a7d99b8db899f594d393986e4b6cd85aa1.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-17T13:56:09-04:00
New Revision: 829d14ee0a6aa79c89f7f3d9fcd9d27d3efd2b91
URL:
https://github.com/llvm/llvm-project/commit/829d14ee0a6aa79c89f7f3d9fcd9d27d3efd2b91
DIFF:
https://github.com/llvm/llvm-project/commit/829d14ee0a6aa79c89f7f3d9fcd9d27d3efd2b91.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-19T10:06:51-04:00
New Revision: e50465ecefc964e5700df26fc7e02a673eed085a
URL:
https://github.com/llvm/llvm-project/commit/e50465ecefc964e5700df26fc7e02a673eed085a
DIFF:
https://github.com/llvm/llvm-project/commit/e50465ecefc964e5700df26fc7e02a673eed085a.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-19T10:15:27-04:00
New Revision: 2819cea2ef8aab9d7ef8ba29feec9cb58cc942f6
URL:
https://github.com/llvm/llvm-project/commit/2819cea2ef8aab9d7ef8ba29feec9cb58cc942f6
DIFF:
https://github.com/llvm/llvm-project/commit/2819cea2ef8aab9d7ef8ba29feec9cb58cc942f6.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-23T08:18:19-04:00
New Revision: 301e23305d03cfb4004f845a1d9dfdc5e5931fd8
URL:
https://github.com/llvm/llvm-project/commit/301e23305d03cfb4004f845a1d9dfdc5e5931fd8
DIFF:
https://github.com/llvm/llvm-project/commit/301e23305d03cfb4004f845a1d9dfdc5e5931fd8.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-23T11:20:29-04:00
New Revision: e6d50b4f22dc6bbf0b0b40cfdab172bf5c1694e1
URL:
https://github.com/llvm/llvm-project/commit/e6d50b4f22dc6bbf0b0b40cfdab172bf5c1694e1
DIFF:
https://github.com/llvm/llvm-project/commit/e6d50b4f22dc6bbf0b0b40cfdab172bf5c1694e1.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-23T11:49:59-04:00
New Revision: e90343ada3bda55c697e7ae06dda3f8d8d6ded34
URL:
https://github.com/llvm/llvm-project/commit/e90343ada3bda55c697e7ae06dda3f8d8d6ded34
DIFF:
https://github.com/llvm/llvm-project/commit/e90343ada3bda55c697e7ae06dda3f8d8d6ded34.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-23T16:55:00-04:00
New Revision: 8e780a1653e6f87755a447e921b8f929d8b70996
URL:
https://github.com/llvm/llvm-project/commit/8e780a1653e6f87755a447e921b8f929d8b70996
DIFF:
https://github.com/llvm/llvm-project/commit/8e780a1653e6f87755a447e921b8f929d8b70996.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-24T08:44:37-04:00
New Revision: e39da8ab6a286ac777d5fe7799f1eb782cf99938
URL:
https://github.com/llvm/llvm-project/commit/e39da8ab6a286ac777d5fe7799f1eb782cf99938
DIFF:
https://github.com/llvm/llvm-project/commit/e39da8ab6a286ac777d5fe7799f1eb782cf99938.dif
Author: Yaxun (Sam) Liu
Date: 2020-08-18T23:43:53-04:00
New Revision: 7546b29e761687eeeaefcd8d963c19a2dac98d37
URL:
https://github.com/llvm/llvm-project/commit/7546b29e761687eeeaefcd8d963c19a2dac98d37
DIFF:
https://github.com/llvm/llvm-project/commit/7546b29e761687eeeaefcd8d963c19a2dac98d37.dif
Author: Yaxun (Sam) Liu
Date: 2020-08-19T00:41:14-04:00
New Revision: a11ab6e04c199c2a33d81c451e9e26bf18636dfc
URL:
https://github.com/llvm/llvm-project/commit/a11ab6e04c199c2a33d81c451e9e26bf18636dfc
DIFF:
https://github.com/llvm/llvm-project/commit/a11ab6e04c199c2a33d81c451e9e26bf18636dfc.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-02T16:12:28-04:00
New Revision: 62dbb7e54c65386f3cd73ef761a22b73532158f0
URL:
https://github.com/llvm/llvm-project/commit/62dbb7e54c65386f3cd73ef761a22b73532158f0
DIFF:
https://github.com/llvm/llvm-project/commit/62dbb7e54c65386f3cd73ef761a22b73532158f0.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-08T16:38:34-04:00
New Revision: 041da0d828e39d849c99adf1391aaa9291f4310f
URL:
https://github.com/llvm/llvm-project/commit/041da0d828e39d849c99adf1391aaa9291f4310f
DIFF:
https://github.com/llvm/llvm-project/commit/041da0d828e39d849c99adf1391aaa9291f4310f.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-10T15:41:07-04:00
New Revision: 4934127e627d7c58342be15bc9230a7cbdf5273f
URL:
https://github.com/llvm/llvm-project/commit/4934127e627d7c58342be15bc9230a7cbdf5273f
DIFF:
https://github.com/llvm/llvm-project/commit/4934127e627d7c58342be15bc9230a7cbdf5273f.dif
Author: Yaxun (Sam) Liu
Date: 2020-12-15T22:14:18-05:00
New Revision: 4f14b80803a458209b6b11daa3ec05076b8c4973
URL:
https://github.com/llvm/llvm-project/commit/4f14b80803a458209b6b11daa3ec05076b8c4973
DIFF:
https://github.com/llvm/llvm-project/commit/4f14b80803a458209b6b11daa3ec05076b8c4973.dif
Author: Yaxun (Sam) Liu
Date: 2020-12-16T14:52:39-05:00
New Revision: b9fb063e63c7959e8bc9b424bd34b266ca826826
URL:
https://github.com/llvm/llvm-project/commit/b9fb063e63c7959e8bc9b424bd34b266ca826826
DIFF:
https://github.com/llvm/llvm-project/commit/b9fb063e63c7959e8bc9b424bd34b266ca826826.dif
Author: Yaxun (Sam) Liu
Date: 2020-11-15T08:11:05-05:00
New Revision: fb58142e00ad73c2e6bfd80452e5e9b080c81552
URL:
https://github.com/llvm/llvm-project/commit/fb58142e00ad73c2e6bfd80452e5e9b080c81552
DIFF:
https://github.com/llvm/llvm-project/commit/fb58142e00ad73c2e6bfd80452e5e9b080c81552.dif
Author: Yaxun (Sam) Liu
Date: 2020-11-16T21:52:12-05:00
New Revision: 3f4b5893efed620d93015896d79eb276628286f8
URL:
https://github.com/llvm/llvm-project/commit/3f4b5893efed620d93015896d79eb276628286f8
DIFF:
https://github.com/llvm/llvm-project/commit/3f4b5893efed620d93015896d79eb276628286f8.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-28T22:03:18-04:00
New Revision: 10eb3bf2d430825195bf092d3a75c4745d463826
URL:
https://github.com/llvm/llvm-project/commit/10eb3bf2d430825195bf092d3a75c4745d463826
DIFF:
https://github.com/llvm/llvm-project/commit/10eb3bf2d430825195bf092d3a75c4745d463826.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-28T22:43:17-04:00
New Revision: 187658b8a6112446d9e7797d495bc7542ac83905
URL:
https://github.com/llvm/llvm-project/commit/187658b8a6112446d9e7797d495bc7542ac83905
DIFF:
https://github.com/llvm/llvm-project/commit/187658b8a6112446d9e7797d495bc7542ac83905.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-28T23:07:39-04:00
New Revision: 5a3023a91c0ec82e7272569c5ca7a6eb372b129f
URL:
https://github.com/llvm/llvm-project/commit/5a3023a91c0ec82e7272569c5ca7a6eb372b129f
DIFF:
https://github.com/llvm/llvm-project/commit/5a3023a91c0ec82e7272569c5ca7a6eb372b129f.dif
Author: Yaxun (Sam) Liu
Date: 2020-09-29T20:57:56-04:00
New Revision: d04775e16bba456f0be0aaa7478959c5bfa22c41
URL:
https://github.com/llvm/llvm-project/commit/d04775e16bba456f0be0aaa7478959c5bfa22c41
DIFF:
https://github.com/llvm/llvm-project/commit/d04775e16bba456f0be0aaa7478959c5bfa22c41.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-02T10:17:21-04:00
New Revision: 36501b180a4f0194f0cfb4374d096ae660182827
URL:
https://github.com/llvm/llvm-project/commit/36501b180a4f0194f0cfb4374d096ae660182827
DIFF:
https://github.com/llvm/llvm-project/commit/36501b180a4f0194f0cfb4374d096ae660182827.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-02T10:33:32-04:00
New Revision: c87c017a4c47c47b002b9f55f25285298cd07093
URL:
https://github.com/llvm/llvm-project/commit/c87c017a4c47c47b002b9f55f25285298cd07093
DIFF:
https://github.com/llvm/llvm-project/commit/c87c017a4c47c47b002b9f55f25285298cd07093.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-02T18:10:44-04:00
New Revision: dc6a0b0ec7e3d72a4cc849af4e4aa6c6a29a53d2
URL:
https://github.com/llvm/llvm-project/commit/dc6a0b0ec7e3d72a4cc849af4e4aa6c6a29a53d2
DIFF:
https://github.com/llvm/llvm-project/commit/dc6a0b0ec7e3d72a4cc849af4e4aa6c6a29a53d2.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-02T19:05:51-04:00
New Revision: cbd420c5ed8568774ace3ad8385b2346288e152c
URL:
https://github.com/llvm/llvm-project/commit/cbd420c5ed8568774ace3ad8385b2346288e152c
DIFF:
https://github.com/llvm/llvm-project/commit/cbd420c5ed8568774ace3ad8385b2346288e152c.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-02T19:38:02-04:00
New Revision: 2cd75f738ec6b150719a9468372d77b7064ff340
URL:
https://github.com/llvm/llvm-project/commit/2cd75f738ec6b150719a9468372d77b7064ff340
DIFF:
https://github.com/llvm/llvm-project/commit/2cd75f738ec6b150719a9468372d77b7064ff340.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-04T21:16:36-04:00
New Revision: 64f7790e7d2309b5d38949921a256acf8068e659
URL:
https://github.com/llvm/llvm-project/commit/64f7790e7d2309b5d38949921a256acf8068e659
DIFF:
https://github.com/llvm/llvm-project/commit/64f7790e7d2309b5d38949921a256acf8068e659.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-04T21:27:29-04:00
New Revision: fef0ebbc0b39167656bd11283e3084b000b309dd
URL:
https://github.com/llvm/llvm-project/commit/fef0ebbc0b39167656bd11283e3084b000b309dd
DIFF:
https://github.com/llvm/llvm-project/commit/fef0ebbc0b39167656bd11283e3084b000b309dd.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-04T21:41:43-04:00
New Revision: 9756a402f297d0030689aaade3651785b7496649
URL:
https://github.com/llvm/llvm-project/commit/9756a402f297d0030689aaade3651785b7496649
DIFF:
https://github.com/llvm/llvm-project/commit/9756a402f297d0030689aaade3651785b7496649.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-04T22:03:16-04:00
New Revision: 5b551b79d3bba5a8a282bf5f72c7baaccf925870
URL:
https://github.com/llvm/llvm-project/commit/5b551b79d3bba5a8a282bf5f72c7baaccf925870
DIFF:
https://github.com/llvm/llvm-project/commit/5b551b79d3bba5a8a282bf5f72c7baaccf925870.dif
Author: Yaxun (Sam) Liu
Date: 2020-10-04T22:13:05-04:00
New Revision: e372c1d7624e2402a5f91a640780fb32649922b6
URL:
https://github.com/llvm/llvm-project/commit/e372c1d7624e2402a5f91a640780fb32649922b6
DIFF:
https://github.com/llvm/llvm-project/commit/e372c1d7624e2402a5f91a640780fb32649922b6.dif
Author: Geoff Levner
Date: 2020-10-08T11:42:21-04:00
New Revision: b9225543e844bee5091aa16108e0c54bd2abe485
URL:
https://github.com/llvm/llvm-project/commit/b9225543e844bee5091aa16108e0c54bd2abe485
DIFF:
https://github.com/llvm/llvm-project/commit/b9225543e844bee5091aa16108e0c54bd2abe485.diff
Author: Yaxun (Sam) Liu
Date: 2020-10-15T17:25:55-04:00
New Revision: e384e94fbe7c1d5c89fcdde33ffda04e9802c2ce
URL:
https://github.com/llvm/llvm-project/commit/e384e94fbe7c1d5c89fcdde33ffda04e9802c2ce
DIFF:
https://github.com/llvm/llvm-project/commit/e384e94fbe7c1d5c89fcdde33ffda04e9802c2ce.dif
Author: Yaxun (Sam) Liu
Date: 2020-11-24T08:10:06-05:00
New Revision: cb08558caa3bad69213b08e6361586491232c745
URL:
https://github.com/llvm/llvm-project/commit/cb08558caa3bad69213b08e6361586491232c745
DIFF:
https://github.com/llvm/llvm-project/commit/cb08558caa3bad69213b08e6361586491232c745.dif
Author: Yaxun (Sam) Liu
Date: 2020-11-30T22:31:16-05:00
New Revision: 011bf4f55630858111e5f0504b3f7390eaf41e09
URL:
https://github.com/llvm/llvm-project/commit/011bf4f55630858111e5f0504b3f7390eaf41e09
DIFF:
https://github.com/llvm/llvm-project/commit/011bf4f55630858111e5f0504b3f7390eaf41e09.dif
Author: Yaxun (Sam) Liu
Date: 2020-12-02T10:14:46-05:00
New Revision: cd95338ee3022bffd658e52cd3eb9419b4c218ca
URL:
https://github.com/llvm/llvm-project/commit/cd95338ee3022bffd658e52cd3eb9419b4c218ca
DIFF:
https://github.com/llvm/llvm-project/commit/cd95338ee3022bffd658e52cd3eb9419b4c218ca.dif
Author: Yaxun (Sam) Liu
Date: 2020-12-02T10:15:56-05:00
New Revision: 5c8911d0ba3862119d2507aa55b94766263be13b
URL:
https://github.com/llvm/llvm-project/commit/5c8911d0ba3862119d2507aa55b94766263be13b
DIFF:
https://github.com/llvm/llvm-project/commit/5c8911d0ba3862119d2507aa55b94766263be13b.dif
401 - 500 of 1680 matches
Mail list logo