{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":685615677,"defaultBranch":"main","name":"llvm-project","ownerLogin":"gowtham-sarc","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2023-08-31T16:17:08.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/128911018?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1698176995.0","currentOid":""},"activityList":{"items":[{"before":"fa6b574215377389258f019853a528c12706196d","after":"4bb5d48584818646a31a1ba4bfbbd658b7dfbe67","ref":"refs/heads/main","pushedAt":"2024-04-09T15:57:31.000Z","pushType":"push","commitsCount":10000,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[clang][NFC] Fix CUDA clang-cl tests\n\n- Add '--' argument to prevent interpreting intput files as options\n starting with '/'. Fix test failure after\n 2921a0928c71f4ee652a2478283e47ab5ffebf58.","shortMessageHtmlLink":"[clang][NFC] Fix CUDA clang-cl tests"}},{"before":"8244ff6739a09cb75e6e7fd1c24b85e2b1397266","after":"fa6b574215377389258f019853a528c12706196d","ref":"refs/heads/main","pushedAt":"2023-10-31T18:53:36.000Z","pushType":"push","commitsCount":743,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[flang] Account for shadowed symbols when skimming executable part (#70246)\n\nName resolution takes a quick pass over the executable part of a\r\n(sub)program in search of symbols that appear to be called as\r\nprocedures, so that those names don't get mistakenly converted into\r\nobjects when finishing up specification part processing. This pass\r\ndoesn't currently cope with symbol shadowing by nested declarations in\r\nexecutable constructs. This patch ensures that nested declarations for\r\nsymbols that could be used in contexts that might have been parsed as\r\nfunction references properly shadow symbols of the same name in outer\r\nscopes.","shortMessageHtmlLink":"[flang] Account for shadowed symbols when skimming executable part (l…"}},{"before":"8a596783b99675db3b9abc0a9db9d576d67e5107","after":"c47fd033acc81b347c961e0e5d30b2a8055ecf73","ref":"refs/heads/dev/build-from-angle","pushedAt":"2023-10-31T17:29:31.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[gn build] Guard the BLAKE3 assembly sources with platform\n\nThe source_set target defined for `llvm/lib/Support/BLAKE3` has assembly\nfiles that are specific to x64 platform. Adding the relevant conditional\nfor this target.\n\nSigned-off-by: Gowtham Tammana ","shortMessageHtmlLink":"[gn build] Guard the BLAKE3 assembly sources with platform"}},{"before":"ea4e312dfbaacdfc8e301d1adf64aa15fdd6afb9","after":"a245796b8776bb44b864fc6396dbeac367e9921d","ref":"refs/heads/dev/gn/blake3-assembly-condition","pushedAt":"2023-10-24T19:56:59.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[gn build] Guard the BLAKE3 assembly sources with platform\n\nThe source_set target defined for `llvm/lib/Support/BLAKE3` has assembly\nfiles that are specific to x64 platform. Adding the relevant conditional\nfor this target.\n\nSigned-off-by: Gowtham Tammana ","shortMessageHtmlLink":"[gn build] Guard the BLAKE3 assembly sources with platform"}},{"before":"f952a335aeafbe491a3cddb9aa4941d55540fc35","after":"ea4e312dfbaacdfc8e301d1adf64aa15fdd6afb9","ref":"refs/heads/dev/gn/blake3-assembly-condition","pushedAt":"2023-10-24T19:53:10.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"}},{"before":null,"after":"f952a335aeafbe491a3cddb9aa4941d55540fc35","ref":"refs/heads/dev/gn/blake3-assembly-condition","pushedAt":"2023-10-24T19:49:55.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"}},{"before":"e6005d5a9c177cf80d23c8fae19565986e902b86","after":"8244ff6739a09cb75e6e7fd1c24b85e2b1397266","ref":"refs/heads/main","pushedAt":"2023-10-24T19:35:18.000Z","pushType":"push","commitsCount":127,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[BOLT] Fix incorrect basic block output addresses (#70000)\n\nSome optimization passes may duplicate basic blocks and assign the same\r\ninput offset to a number of different blocks in a function. This is done\r\ne.g. to correctly map debugging ranges for duplicated code.\r\n\r\nHowever, duplicate input offsets present a problem when we use\r\nAddressMap to generate new addresses for basic blocks. The output\r\naddress is calculated based on the input offset and will be the same for\r\nblocks with identical offsets. The result is potentially incorrect debug\r\ninfo and BAT records.\r\n\r\nTo address the issue, we have to eliminate the dependency on input\r\noffsets while generating output addresses for a basic block. Each block\r\nhas a unique label, hence we extend AddressMap to include address lookup\r\nbased on MCSymbol and use the new functionality to update block\r\naddresses.","shortMessageHtmlLink":"[BOLT] Fix incorrect basic block output addresses (llvm#70000)"}},{"before":"b3ae36f0b5a3aeec677bd36b0d6656ae169bf7e4","after":"e257ed76f3b1588cea3ebf2261bb1bd8f16ae93a","ref":"refs/heads/dev/gn/fix-attrtokens","pushedAt":"2023-10-23T23:02:18.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"gn: Fix AttrTokens dependency\n\nFew clangd targets are missing the AttrToken dependency in their\ndefinition causing below error\n\n```\n../../clang/include/clang/Basic/TokenKinds.def:758:10: fatal error: clang/Basic/AttrTokenKinds.inc: No such file or directory\n 758 | #include \"clang/Basic/AttrTokenKinds.inc\"\n | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\ncompilation terminated.\n```\n\nFixing it.\n\nSigned-off-by: Gowtham Tammana ","shortMessageHtmlLink":"gn: Fix AttrTokens dependency"}},{"before":"7d7e4d20b077c1f64b0db88ab844ccb9214bd38c","after":"e6005d5a9c177cf80d23c8fae19565986e902b86","ref":"refs/heads/main","pushedAt":"2023-10-23T22:37:43.000Z","pushType":"push","commitsCount":139,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[mlir][sparse] support 2:4 structured sparsity and loose compressed (#69968)\n\nThis adds library support for these two new level formats.","shortMessageHtmlLink":"[mlir][sparse] support 2:4 structured sparsity and loose compressed (l…"}},{"before":"6dff48d6b5a6ee06f7e2b17aae8e45e570966c4a","after":"b3ae36f0b5a3aeec677bd36b0d6656ae169bf7e4","ref":"refs/heads/dev/gn/fix-attrtokens","pushedAt":"2023-10-23T22:37:19.000Z","pushType":"push","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"}},{"before":null,"after":"6dff48d6b5a6ee06f7e2b17aae8e45e570966c4a","ref":"refs/heads/dev/gn/fix-attrtokens","pushedAt":"2023-10-23T20:00:36.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"}},{"before":"122064a6303eb9c06e0af231f5a4ce145d9a2e67","after":"7d7e4d20b077c1f64b0db88ab844ccb9214bd38c","ref":"refs/heads/main","pushedAt":"2023-10-21T13:38:59.000Z","pushType":"push","commitsCount":444,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[Windows] Add git-clang-format wrapper bat file (#69228)\n\nThis allows git-clang-format to be used on a Windows terminal without\r\nmanually needing to find the path and invoke the python interpreter. We\r\nhave a similar script for `scan-build`.\r\n\r\nFixes #69643","shortMessageHtmlLink":"[Windows] Add git-clang-format wrapper bat file (llvm#69228)"}},{"before":"8fb12f8aded6bb42c0e2c572fa805d67f0f1cb33","after":"122064a6303eb9c06e0af231f5a4ce145d9a2e67","ref":"refs/heads/main","pushedAt":"2023-10-17T19:51:05.000Z","pushType":"push","commitsCount":4498,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[libcxx] [test] Add a test parameter for disabling memory intensive tests (#68214)\n\nSpecifically, the test std/input.output/string.streams/stringstream/stringstream.members/gcount.pass.cpp\r\nallocates a std::string with INT_MAX-1 elements, and then writes this to\r\na std::stringstream. On Linux, running this test consumes around 5.0 GB\r\nof memory; on Windows, it ends up using up to 6.8 GB of memory.\r\n\r\nThis limits whether such tests can run on e.g. GitHub Actions runners,\r\nwhere the free runners are limited to 8 GB of memory.\r\n\r\nThis is somewhat similar to, but still notably different, from the\r\nexisting test parameter long_tests.","shortMessageHtmlLink":"[libcxx] [test] Add a test parameter for disabling memory intensive t…"}},{"before":null,"after":"8a596783b99675db3b9abc0a9db9d576d67e5107","ref":"refs/heads/dev/build-from-angle","pushedAt":"2023-09-25T21:47:00.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"gn/clang: Add override llvm configs to clang targets\n\nSigned-off-by: Gowtham Tammana ","shortMessageHtmlLink":"gn/clang: Add override llvm configs to clang targets"}},{"before":"ac65fb869977185b44757b94dc5130bd08c6f7e2","after":"8fb12f8aded6bb42c0e2c572fa805d67f0f1cb33","ref":"refs/heads/main","pushedAt":"2023-09-01T15:49:48.000Z","pushType":"push","commitsCount":128,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[AArch64][GlobalISel] Re-generate stale test checks.","shortMessageHtmlLink":"[AArch64][GlobalISel] Re-generate stale test checks."}},{"before":null,"after":"25a7304d8eb2a26ae7c9ecc79e110ec829a28bed","ref":"refs/heads/dev/gn/add-build-overrides","pushedAt":"2023-08-31T16:50:32.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"gn: Add the llvm root dependency to gen includes\n\nThe $root_gen_dir is setup to the root of the gn build tree. Add a llvm\nroot prefix to handle any subtree layout used for llvm.\n\nSigned-off-by: Gowtham Tammana ","shortMessageHtmlLink":"gn: Add the llvm root dependency to gen includes"}},{"before":"8149989532b9c03e51275e34dd64029ad6aa8f3f","after":"ac65fb869977185b44757b94dc5130bd08c6f7e2","ref":"refs/heads/main","pushedAt":"2023-08-31T16:27:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"[LoopVectorize] Fix incorrect order of invariant stores when there are multiple reductions.\n\nWhen a loop has multiple reductions, each with an intermediate invariant\nstore, the order in which those reductions are processed is not considered.\nThis can result in the invariant stores outside the loop not preserving the\noriginal order.\nThis patch sorts VPReductionPHIRecipes by the order in which they have\nstores in the original loop before running\n`InnerLoopVectorizer::fixReduction` function, and it helps to maintain\nthe correct order of stores.\n\nFixes https://github.com/llvm/llvm-project/issues/64047\n\nDifferential Revision: https://reviews.llvm.org/D157631","shortMessageHtmlLink":"[LoopVectorize] Fix incorrect order of invariant stores when there ar…"}},{"before":"6658db5e501475bf288f6d9eb2a8ff21d5fee8b5","after":"8149989532b9c03e51275e34dd64029ad6aa8f3f","ref":"refs/heads/main","pushedAt":"2023-08-31T16:21:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gowtham-sarc","name":"Gowtham Tammana","path":"/gowtham-sarc","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/128911018?s=80&v=4"},"commit":{"message":"enable new pipeline","shortMessageHtmlLink":"enable new pipeline"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNC0wOVQxNTo1NzozMS4wMDAwMDBazwAAAAQsLx6u","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNC0wOVQxNTo1NzozMS4wMDAwMDBazwAAAAQsLx6u","endCursor":"Y3Vyc29yOnYyOpK7MjAyMy0wOC0zMVQxNjoyMToxNC4wMDAwMDBazwAAAAN2ywOv"}},"title":"Activity · gowtham-sarc/llvm-project"}