search for: cuda_test

Displaying 3 results from an estimated 3 matches for "cuda_test".

2017 Nov 08
3
[RFC] ASan: patches to support 32-byte shadow granularity
...OverlappingPoisonMemoryRegionTest PoisoningStressTest compiler-rt/test/asan/TestCases/small_memcpy_test.cc compiler-rt/test/asan/TestCases/strtol_strict.c compiler-rt/test/asan/TestCases/strtoll_strict.c - Has hardwired memory map: compiler-rt/test/asan/TestCases/Linux/cuda_test.cc compiler-rt/test/asan/TestCases/Linux/kernel-area.cc compiler-rt/test/asan/TestCases/Linux/nohugepage_test.cc - Miscellaneous: compiler-rt/test/asan/TestCases/Linux/allocator_oom_test.cc This test assumes amount of available memory. compiler-rt/test/asan/TestCases/stack-...
2017 Feb 23
4
RFC: Generalize means the sanitizers work with memory
...emory as we access it. This way we simulate a software virtual memory manager that allocates physical storage for shadow memory on-demand. We used that to mock RTL for the sanitizers tests. With this mock in place we pass all Tsan tests and fail on 3 of 610 Asan tests: test/asan/TestCases/Linux/cuda_test.cc test/asan/TestCases/Linux/nohugepage_test.cc test/asan/TestCases/Linux/swapcontext_annotation.cc The first two tests rely on specific memory map after initializtion of the shadow memory and the latter takes too long to complete. It would probably be acceptable to XFAIL them when run with a sof...
2017 Oct 31
1
[RFC] ASan: patches to support 32-byte shadow granularity
+ more asan folks, please CC them to the code reviews. Also please make sure llvm-commits is CC-ed (cfe-commits for clang changes) On Tue, Oct 31, 2017 at 2:29 PM, Walter Lee <waltl at google.com> wrote: > I've prepared a preliminary set of patches that makes ASan work with > 32-byte shadow granularity, and I would like to get some feedback on > those patches as well as my