You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parallelize across a large list crashes (EXC_BAD_ACCESS) on 2022 Mac studio m1 ultra
Steps to reproduce
from algorithm.functional import parallelize
def main():
var vals: List[List[Int]] = List[List[Int]]()
for v in range(0, 1000000):
vals.append(List[Int](v))
var n = len(vals)
@parameter
fn closure(i: Int):
var ll = vals[i]
parallelize[closure](n)
- What OS did you do install Mojo on ? macOS Sonoma 14.4.1 (23E224)
- Provide version information for Mojo by pasting the output of `mojo -v` mojo 24.2.1 (2f0dcf11)
- Provide Modular CLI version by pasting the output of `modular -v` modular 0.7.1 (28ddab26)
The text was updated successfully, but these errors were encountered:
Bug description
parallelize across a large list crashes (EXC_BAD_ACCESS) on 2022 Mac studio m1 ultra
Steps to reproduce
17713:4827387:20240419,102003.215882:WARNING crash_report_exception_handler.cc:257] UniversalExceptionRaise: (os/kern) failure (5)
zsh: segmentation fault '/Users/julianrozentur/.modular/pkg/packages.modular.com_mojo/bin/mojo'
with debugger:
thread #18, name = '🔥 Thread15', stop reason = EXC_BAD_ACCESS (code=1, address=0x1537fbbf0)
frame #0: 0x000000030007a644
-> 0x30007a644: ldr d0, [x8]
0x30007a648: ldr x0, [sp, #0x38]
0x30007a64c: adrp x8, 1
0x30007a650: ldr x8, [x8, #0xf8]
System information
The text was updated successfully, but these errors were encountered: