Louis Jenkins
Louis Jenkins
```c #include #include #include #include #include #include #include #include #include #include #include #include // Wait syscall #include #include #include #include int main(void) { PAPI_library_init(PAPI_VER_CURRENT); int ret = PAPI_thread_init(pthread_self); if (ret...
Docker image available on [DockerHub](https://hub.docker.com/r/louisjenkinscs/atlas-hp) and [GitHub](https://github.com/LouisJenkinsCS/Atlas/packages/132050).
# Queue Specification I am in favor of having a specification in terms of functionality, but not everything can be standardized, especially configuration and whatnot, so I believe we should...
As well, I'd like to put forward some hesitation in terms of the custom queue... while it would be great for some queues, my concern is for work stealing. Things...
Oh nice! In fact, there is no need to provide any of the other enqueue operations beyond the variadic argument one and the iterable one, as well we can use...
Okay, I revised it a bit and even use `chpldoc` to generate proper documentation, but if anything I mucked up my repository even more doing so (going to make merging...
@e-kayrakli Okay, [this](https://louisjenkinscs.github.io/Distributed_Queue/modules/queues/Queue.html) is for official review before posting in the actual issue. How do the docs look? I believe it should contain enough information to garner attention and grab...
Furthermore, I'd like to propose one more potential design decision: `mapping`. ```chpl // Btw is this allowed? Its equivalent to assigning a `nil` queue to a tuple of elements. Could...
> What does "then it is up to the user to be able to ‘replay’ elements not consumed and dropped" mean in iterObj enqueue? Dropped means that, when rejected, they...
> I think you ought to come up with a better name than "Work Queue" for the unordered structure. Technically I can store things other than "Works" and it is...