neko-suki

Results 5 comments of neko-suki

On behalf of the original reporter, I reported this in detail. ## Bug report `size_function`, `get_const_function`, `get_function`, `resize_function` for [MessageMember_s](https://github.com/ros2/rosidl/blob/master/rosidl_typesupport_introspection_cpp/include/rosidl_typesupport_introspection_cpp/message_introspection.hpp#L30) for variable boolean array is not properly generated. `nullptr` is...

I show another example since the example code in https://github.com/fixstars/clpy/issues/165#issue-405507707 is resolved by modification for #166. - Code ``` import clpy import time tmp = clpy.random.rand(5) print(tmp) tmp =clpy.random.rand(6) print(tmp)...

I tried to reuse the first element of `self.seed_array[0]`. It can solve the problem. The result of code in https://github.com/fixstars/clpy/issues/165#issuecomment-460541087 is as follows. ``` $ python new_random.py [0.90678602 0.35804626 0.8093065...

@LWisteria From the performance point of view, it takes much longer time only the first time the program pass through `initial_seed = self.seed_array[0]`. I don't know the reason why it...

I'm sorry I misread your comments. > I mean, this issue (not performance, it was already solved on #162 ) could be solved if you pass time value to kernel...