Infinoid
Infinoid
I tried reading a `.mkv` file and it crashed. ``` video = mydia.Videos().read(video_path) File ".../python3.6/site-packages/mydia/mydia.py", line 234, in read video_tensor = np.vstack(map(self._read_video, paths_iterator)) File "", line 6, in vstack File...
## Summary The [`cyberark/conjur` docker container](https://hub.docker.com/r/cyberark/conjur/) does not restart gracefully. It leaves a stale pidfile behind, and then refuses to start. ## Steps to Reproduce 1. Follow the [quickstart setup...
Taco dies with a fatal exception if input shapes don't line up perfectly. But I don't think this is always an error. If I add two matrices together, it works...
This is a followup to #458. It adds a second CI workflow, for automatic CUDA testing of pushes to master. It does NOT run on pull requests - see #457...
[The `.assemble()` scheduling directive](https://github.com/tensor-compiler/taco/blob/master/include/taco/index_notation/index_notation.h#L699-L705) was added fairly recently, it seems to control the mechanism by which values are written to sparse output tensors. This directive isn't mentioned on [the scheduling...
I see that the python bindings can apply some parallelism to the top-level loop, with `set_parallel_schedule` and `set_num_threads`. It would be useful to have access to other scheduling directives as...
The windowing stride syntax doesn't work quite right when configured with `-DCUDA=ON`. These 3 test cases fail: ``` 890 - windowing/stride.windowing/(dense,compressed) (Failed) 891 - windowing/stride.windowing/(compressed,dense) (Failed) 892 - windowing/stride.windowing/(compressed,compressed) (Failed)...
While trying to cook up a test case that does this: ```sh $ taco 'y(j) = A(i,j,k) * x(k)' -s='parallelize(j, CPUThread, Atomics)' ``` I noticed that the C++ API does...
The command line parameter `-write-source=` writes several functions to the specified file. This includes utility functions and macros, I think it is intended to write everything needed to run the...
Taco generates valid code for both of these cases. ``` % bin/taco 'A(i,j) = B(i,j)' > copy-matrix.c % bin/taco 'A(i,j) = B(j,i)' > transpose-matrix.c ``` But it can't generate an...