Sobhan Mohammadpour

Results 12 issues of Sobhan Mohammadpour

```julia using FLoops, Infiltrator @floop for i in 1:1000 x = randn(100, 100) @infiltrate end ``` gives ``` ERROR: LoadError: deepcopy of Modules not supported Stacktrace: [1] error(s::String) @ Base...

phyperopt seems to be broken MWE: ```julia using Distributed addprocs(4; exeflags=`--project=$(Base.active_project())`) using Hyperopt @everywhere using Optim @everywhere f(a;c=10) = sum(@. 100 + (a-3)^2 + (c-100)^2) hohb = @phyperopt for resources=50,...

In an attempt to fix NOMAD.jl (the threading issue), i realized that nomad never releases the signal handlers. Mark Kittisopikul and i think that might be the issue. Would it...

Hi, i have a nomad file that goes roughly like ``` DIMENSION 17 NB_THREADS_OPENMP 18 BB_EXE "$./a.out" BB_OUTPUT_TYPE OBJ BB_INPUT_TYPE * R LH_SEARCH 16 10 LOWER_BOUND * -10 UPPER_BOUND *...

![image](https://user-images.githubusercontent.com/2301159/197349457-1b388b3b-0fc3-4726-96f1-263ad2046ca4.png) ```julia function f() return [sparse(transpose(sprandn(10000, 10000, 0.1))) for i in 1:100] end ``` i can't see the dynamic dispatch with Cthulhu. any idea why?

I couldn't find anything like this so i thought i'd make a small implementation. the idea is that this makes iteration on sparsearrays much easier, no need to deal with...

### Is your feature request related to a problem? While setting the target interface's ip should work in most cases, it's possible that multiple devices have the same ip. Also...

enhancement
good first issue
need pull request
Hacktoberfest

I think the general consensus in Python is that mutable types should not be hashable; however unfrozen dataclasses are hashable. See code below: ```python import dataclasses from etils import edc...

```python import dataclasses from etils import edc @edc.dataclass(allow_unfrozen=True) @dataclasses.dataclass(eq=True, kw_only=True) class Conf: x: int = 3 a = Conf() a.x = 2 # verify that a is not frozen a.frozen()...

Hi, https://godbolt.org/z/xrbv7x415 There are at least two issues, `valarray`s use `std::begin` instead of `.begin` and they don't have `std::iterator`. `std::begin` return `T*` as far as I understand. What would be...