Adi Shavit

Results 98 comments of Adi Shavit

Interesting. I was not familiar with this. Make a PR in the Oddballs section and add the ref.

I would really like this feature! I just drew this for some code comments: ``` # /\ +----+ # / \ | | # / \ | | # /...

IMO, “45” deg. diagonals would already be a very significant improvement in and of themselves (and UI UC are independent of Unicode encoding). The caveats of ASCII diagrams (like the...

I guess it can just move the text or ignore it. The use case would be getting 90 deg versions of the diagram. But perhaps this is a stretch goal....

Here are a few thoughts: 1. I think that each line should ideally contain a single operator going in a single direction. How about something like this: 1. `dst dst`...

I don't think we need to invent new names. What does e.g. [TBB](https://software.intel.com/en-us/node/506211) use? Broadcast, split, join ?

"broadcast" is generic enough to imply both split and join in a single kernel. BTW, do you expect many such mux-demux (split-then-join) graphs?

or maybe even `tie`? Which chimes nicely with the concept of a `tuple` (a k-set). See e.g. [`std::tie`](http://en.cppreference.com/w/cpp/utility/tuple/tie).

If you do not need to modify `b_proc`, would it be possible to write this: ``` raft::map m; raft::kernel a,b,c; /** all of b forced to a single process, call...