├── .authorspellings ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Makefile ├── README.md ├── RELEASE-CHECKLIST.md ├── cabal.project ├── icebox ├── abandoned │ ├── DirectFlow.hs │ ├── repa-coflow │ │ └── Data │ │ │ └── Array │ │ │ └── Repa │ │ │ └── CoFlow │ │ │ ├── Base.hs │ │ │ └── Seq │ │ │ └── Base.hs │ ├── repa-flow │ │ ├── Data │ │ │ └── Array │ │ │ │ └── Repa │ │ │ │ └── Flow │ │ │ │ ├── Base.hs │ │ │ │ ├── Par.hs │ │ │ │ ├── Par │ │ │ │ ├── Distro.hs │ │ │ │ ├── Flow.hs │ │ │ │ ├── Operator │ │ │ │ │ ├── Append.hs │ │ │ │ │ ├── Fold.hs │ │ │ │ │ ├── Generate.hs │ │ │ │ │ ├── Map.hs │ │ │ │ │ ├── Pack.hs │ │ │ │ │ └── Project.hs │ │ │ │ ├── Segd.hs │ │ │ │ └── SegdSplit.hs │ │ │ │ ├── Seq.hs │ │ │ │ └── Seq │ │ │ │ ├── Base.hs │ │ │ │ ├── Operator │ │ │ │ ├── Append.hs │ │ │ │ ├── Combine.hs │ │ │ │ ├── Dup.hs │ │ │ │ ├── Fold.hs │ │ │ │ ├── Generate.hs │ │ │ │ ├── Map.hs │ │ │ │ ├── Pack.hs │ │ │ │ ├── Project.hs │ │ │ │ ├── Slurp.hs │ │ │ │ └── Zip.hs │ │ │ │ ├── Report.hs │ │ │ │ ├── Sink.hs │ │ │ │ └── Source.hs │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── NOTES │ │ ├── Setup.hs │ │ ├── repa-flow.cabal │ │ └── test │ │ │ ├── fusion │ │ │ ├── TestPar.hs │ │ │ └── TestSeq.hs │ │ │ ├── props │ │ │ ├── TestPar.hs │ │ │ └── TestSeq.hs │ │ │ └── seq │ │ │ └── Unboxed.hs │ ├── repa-plugin │ │ ├── Data │ │ │ └── Array │ │ │ │ └── Repa │ │ │ │ ├── Plugin.hs │ │ │ │ └── Plugin │ │ │ │ ├── FatName.hs │ │ │ │ ├── GHC │ │ │ │ └── Pretty.hs │ │ │ │ ├── Pass │ │ │ │ ├── Dump.hs │ │ │ │ └── Lower.hs │ │ │ │ ├── Pipeline.hs │ │ │ │ ├── Primitives.hs │ │ │ │ ├── Primitives │ │ │ │ └── Selectors.hs │ │ │ │ ├── ToDDC.hs │ │ │ │ ├── ToDDC │ │ │ │ ├── Convert.hs │ │ │ │ ├── Convert │ │ │ │ │ ├── Base.hs │ │ │ │ │ ├── Type.hs │ │ │ │ │ └── Var.hs │ │ │ │ ├── Detect.hs │ │ │ │ └── Detect │ │ │ │ │ ├── Base.hs │ │ │ │ │ ├── Prim.hs │ │ │ │ │ └── Type.hs │ │ │ │ ├── ToGHC.hs │ │ │ │ └── ToGHC │ │ │ │ ├── Prim.hs │ │ │ │ ├── Type.hs │ │ │ │ ├── Var.hs │ │ │ │ └── Wrap.hs │ │ ├── LICENSE │ │ ├── Setup.hs │ │ ├── repa-plugin.cabal │ │ └── test │ │ │ ├── 01-Simple │ │ │ └── Main.hs │ │ │ ├── 02-Opaque │ │ │ └── Main.hs │ │ │ ├── 03-Prims │ │ │ └── Main.hs │ │ │ ├── 10-Pack │ │ │ └── Main.hs │ │ │ ├── 20-Vector │ │ │ └── Main.hs │ │ │ └── 90-Benchmarks │ │ │ ├── c │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Main_DotProduct.c │ │ │ │ ├── Main_FilterMax.c │ │ │ │ ├── Main_FilterSum.c │ │ │ │ ├── Main_MapMap.c │ │ │ │ ├── Main_NestedFilter.c │ │ │ │ ├── Main_QuickHull.c │ │ │ │ ├── QuickHull.c │ │ │ │ ├── Timing.c │ │ │ │ ├── Timing.h │ │ │ │ └── Vector.h │ │ │ └── repa │ │ │ ├── DotProduct │ │ │ ├── Main.hs │ │ │ └── Vector.hs │ │ │ ├── FilterMax │ │ │ └── Main.hs │ │ │ ├── FilterSum │ │ │ ├── Main.hs │ │ │ └── Vector.hs │ │ │ ├── MapMap │ │ │ ├── Main.hs │ │ │ └── Vector.hs │ │ │ ├── NestedFilter │ │ │ ├── Main.hs │ │ │ └── Vector.hs │ │ │ ├── Points │ │ │ └── Main.hs │ │ │ ├── QuickHull │ │ │ ├── Main.hs │ │ │ └── Vector.hs │ │ │ └── QuickSort │ │ │ └── Quicksort.hs │ ├── repa-series │ │ ├── Data │ │ │ └── Array │ │ │ │ └── Repa │ │ │ │ ├── Series.hs │ │ │ │ └── Series │ │ │ │ ├── Fallback.hs │ │ │ │ ├── Prim.hs │ │ │ │ ├── Prim │ │ │ │ ├── Double.hs │ │ │ │ ├── Float.hs │ │ │ │ ├── Int.hs │ │ │ │ ├── Loop.hs │ │ │ │ ├── Utils.hs │ │ │ │ └── Word.hs │ │ │ │ ├── Process.hs │ │ │ │ ├── Rate.hs │ │ │ │ ├── Ref.hs │ │ │ │ ├── Sel.hs │ │ │ │ ├── Series.hs │ │ │ │ └── Vector.hs │ │ ├── LICENSE │ │ ├── Setup.hs │ │ ├── icebox │ │ │ └── Series.hs │ │ └── repa-series.cabal │ ├── repa-stream │ │ ├── Data │ │ │ └── Array │ │ │ │ └── Repa │ │ │ │ ├── Chain.hs │ │ │ │ ├── Chain │ │ │ │ ├── Append.hs │ │ │ │ ├── Base.hs │ │ │ │ ├── Eval.hs │ │ │ │ ├── Indexed.hs │ │ │ │ ├── Indexs.hs │ │ │ │ ├── Map.hs │ │ │ │ └── Replicate.hs │ │ │ │ ├── Distro.hs │ │ │ │ ├── Stream.hs │ │ │ │ └── Stream │ │ │ │ ├── Base.hs │ │ │ │ ├── Combine.hs │ │ │ │ ├── Eval.hs │ │ │ │ ├── Flatten.hs │ │ │ │ ├── Fold.hs │ │ │ │ ├── Indexs.hs │ │ │ │ ├── Map.hs │ │ │ │ ├── Pack.hs │ │ │ │ └── Scan.hs │ │ ├── LICENSE │ │ ├── Setup.hs │ │ ├── repa-stream.cabal │ │ ├── scratch │ │ │ ├── Solver.hs │ │ │ └── Stream.hs │ │ └── test │ │ │ └── fusion │ │ │ ├── Map.hs │ │ │ └── Replicate.hs │ ├── repa-vector-old │ │ ├── Data │ │ │ └── Vector │ │ │ │ ├── Repa.hs │ │ │ │ └── Repa │ │ │ │ ├── Base.hs │ │ │ │ ├── Operators │ │ │ │ ├── Chains.hs │ │ │ │ ├── Replicate.hs │ │ │ │ └── Zip.hs │ │ │ │ └── Repr │ │ │ │ ├── Chain.hs │ │ │ │ ├── Chunked.hs │ │ │ │ └── Sliced.hs │ │ ├── chains │ │ │ └── Data │ │ │ │ └── Array │ │ │ │ └── Repa │ │ │ │ ├── Repr │ │ │ │ ├── Chain.hs │ │ │ │ └── Stream.hs │ │ │ │ ├── Vector.hs │ │ │ │ └── Vector │ │ │ │ ├── Base.hs │ │ │ │ ├── Operators │ │ │ │ ├── Combine.hs │ │ │ │ ├── Flatten.hs │ │ │ │ ├── Fold.hs │ │ │ │ ├── Indexed.hs │ │ │ │ ├── Indexs.hs │ │ │ │ ├── Map.hs │ │ │ │ ├── Pack.hs │ │ │ │ ├── Scan.hs │ │ │ │ └── Zip.hs │ │ │ │ ├── Segd.hs │ │ │ │ ├── Segd │ │ │ │ └── Split.hs │ │ │ │ └── Sel.hs │ │ ├── compile-test │ │ ├── cuts │ │ │ ├── Unboxed.hs │ │ │ └── Vector.hs │ │ └── fusion │ │ │ ├── ChainChunk.hs │ │ │ └── ChainSeq.hs │ └── repa-vector │ │ ├── Data │ │ └── Array │ │ │ └── Repa │ │ │ ├── Vector.hs │ │ │ └── Vector │ │ │ ├── Base.hs │ │ │ ├── Compute.hs │ │ │ ├── Compute │ │ │ ├── Load.hs │ │ │ └── Target.hs │ │ │ ├── Distro.hs │ │ │ ├── Index.hs │ │ │ ├── Operators │ │ │ ├── Append.hs │ │ │ ├── Bulk.hs │ │ │ ├── Combine.hs │ │ │ ├── Flatten.hs │ │ │ ├── Fold.hs │ │ │ ├── Map.hs │ │ │ ├── Pack.hs │ │ │ ├── Project.hs │ │ │ ├── Replicate.hs │ │ │ ├── Traverse.hs │ │ │ ├── Unzip.hs │ │ │ └── Zip.hs │ │ │ ├── Repr │ │ │ ├── Delayed.hs │ │ │ ├── Flow.hs │ │ │ └── Unboxed.hs │ │ │ ├── Segd.hs │ │ │ └── Shape.hs │ │ ├── LICENSE │ │ ├── Setup.hs │ │ ├── repa-vector.cabal │ │ └── test │ │ ├── Test.hs │ │ └── props │ │ └── Test.hs ├── deprecated │ └── repa-bytestring │ │ ├── LICENSE │ │ ├── Setup.hs │ │ └── repa-bytestring.cabal └── stashed │ ├── Base.hs │ ├── Boxed.hs │ ├── Checked.hs │ ├── Foreign.hs │ └── Unboxed.hs ├── repa-algorithms ├── Data │ └── Array │ │ └── Repa │ │ └── Algorithms │ │ ├── ColorRamp.hs │ │ ├── Complex.hs │ │ ├── Convolve.hs │ │ ├── DFT.hs │ │ ├── DFT │ │ ├── Center.hs │ │ └── Roots.hs │ │ ├── FFT.hs │ │ ├── Matrix.hs │ │ ├── Pixel.hs │ │ └── Randomish.hs ├── LICENSE ├── Setup.hs └── repa-algorithms.cabal ├── repa-array ├── Data │ └── Repa │ │ ├── Array.hs │ │ ├── Array │ │ ├── Auto.hs │ │ ├── Auto │ │ │ ├── Base.hs │ │ │ ├── Convert.hs │ │ │ ├── Format.hs │ │ │ ├── IO.hs │ │ │ ├── Operator.hs │ │ │ └── XSV.hs │ │ ├── Generic.hs │ │ ├── Generic │ │ │ ├── Convert.hs │ │ │ ├── Index.hs │ │ │ ├── Load.hs │ │ │ ├── Slice.hs │ │ │ ├── Target.hs │ │ │ └── Unpacks.hs │ │ ├── Internals │ │ │ ├── Bulk.hs │ │ │ ├── Check.hs │ │ │ ├── Layout.hs │ │ │ ├── Load.hs │ │ │ ├── Operator │ │ │ │ ├── Compact.hs │ │ │ │ ├── Concat.hs │ │ │ │ ├── Filter.hs │ │ │ │ ├── Fold.hs │ │ │ │ ├── Group.hs │ │ │ │ ├── Insert.hs │ │ │ │ ├── Merge.hs │ │ │ │ ├── Partition.hs │ │ │ │ ├── Process.hs │ │ │ │ ├── Reduce.hs │ │ │ │ └── Replicate.hs │ │ │ ├── Shape.hs │ │ │ └── Target.hs │ │ ├── Material.hs │ │ ├── Material │ │ │ ├── Auto.hs │ │ │ ├── Auto │ │ │ │ ├── Base.hs │ │ │ │ ├── InstArray.hs │ │ │ │ ├── InstBox.hs │ │ │ │ ├── InstChar.hs │ │ │ │ ├── InstDate32.hs │ │ │ │ ├── InstFloat.hs │ │ │ │ ├── InstInt.hs │ │ │ │ ├── InstList.hs │ │ │ │ ├── InstMaybe.hs │ │ │ │ ├── InstProduct.hs │ │ │ │ ├── InstText.hs │ │ │ │ ├── InstTuple.hs │ │ │ │ ├── InstUnit.hs │ │ │ │ ├── InstWord.hs │ │ │ │ └── Operator │ │ │ │ │ ├── Lines.hs │ │ │ │ │ └── Unpackables.hs │ │ │ ├── Boxed.hs │ │ │ ├── Foreign.hs │ │ │ ├── Foreign │ │ │ │ ├── Base.hs │ │ │ │ └── Lines.hs │ │ │ ├── Nested.hs │ │ │ └── Unboxed.hs │ │ ├── Meta.hs │ │ └── Meta │ │ │ ├── Delayed.hs │ │ │ ├── Delayed2.hs │ │ │ ├── Dense.hs │ │ │ ├── Linear.hs │ │ │ ├── RowWise.hs │ │ │ ├── Tuple.hs │ │ │ └── Window.hs │ │ ├── Eval │ │ ├── Chain.hs │ │ └── Stream.hs │ │ ├── Fusion │ │ └── Unpack.hs │ │ ├── Nice.hs │ │ └── Nice │ │ ├── Display.hs │ │ ├── Present.hs │ │ └── Tabulate.hs ├── LICENSE ├── include │ └── repa-array.h └── repa-array.cabal ├── repa-convert ├── Data │ └── Repa │ │ ├── Convert.hs │ │ └── Convert │ │ ├── Format.hs │ │ ├── Format │ │ ├── App.hs │ │ ├── Ascii.hs │ │ ├── Binary.hs │ │ ├── Bytes.hs │ │ ├── Date32.hs │ │ ├── Fields.hs │ │ ├── Maybe.hs │ │ ├── Numeric.hs │ │ ├── Object.hs │ │ ├── Sep.hs │ │ ├── String.hs │ │ ├── Text.hs │ │ └── Unit.hs │ │ ├── Formats.hs │ │ └── Internal │ │ ├── Format.hs │ │ ├── Packable.hs │ │ ├── Packer.hs │ │ └── Unpacker.hs ├── LICENSE ├── include │ └── repa-convert.h └── repa-convert.cabal ├── repa-eval ├── Data │ └── Repa │ │ └── Eval │ │ ├── Elt.hs │ │ ├── Gang.hs │ │ └── Generic │ │ ├── Par.hs │ │ ├── Par │ │ ├── Chunked.hs │ │ ├── Cursored.hs │ │ ├── Interleaved.hs │ │ └── Reduction.hs │ │ ├── Seq.hs │ │ └── Seq │ │ ├── Chunked.hs │ │ ├── Cursored.hs │ │ └── Reduction.hs ├── LICENSE ├── Setup.hs └── repa-eval.cabal ├── repa-examples ├── LICENSE ├── Makefile ├── Setup.hs ├── broken │ ├── Fluid │ │ └── legacy │ │ │ ├── demo.c │ │ │ └── solver.c │ └── MDim │ │ └── MDim.hs ├── data │ ├── cosine-horizontal.bmp.gz │ ├── cosine-rotated.bmp.gz │ ├── cosine-vertical.bmp.gz │ ├── lena.bmp.gz │ └── step20.bmp.gz ├── examples │ ├── Blur │ │ └── src-repa │ │ │ └── Main.hs │ ├── Canny │ │ ├── src-opencv │ │ │ └── Main.cpp │ │ └── src-repa │ │ │ └── Main.hs │ ├── FFT │ │ ├── FFT2d │ │ │ └── src-repa │ │ │ │ └── Main.hs │ │ ├── HighPass2d │ │ │ ├── src-fftw │ │ │ │ ├── FFTW.c │ │ │ │ ├── Jones.c │ │ │ │ └── Main.c │ │ │ ├── src-paper │ │ │ │ ├── FFT.hs │ │ │ │ └── Main.hs │ │ │ ├── src-repa │ │ │ │ └── Main.hs │ │ │ ├── src-split │ │ │ │ └── FFT.hs │ │ │ ├── src-traverse │ │ │ │ └── FFT.hs │ │ │ └── src-vector │ │ │ │ ├── FFT.hs │ │ │ │ └── Main.hs │ │ ├── HighPass3d │ │ │ ├── src-fftw │ │ │ │ └── Main.c │ │ │ └── src-repa │ │ │ │ └── Main.hs │ │ └── Paper │ │ │ └── src-repa │ │ │ ├── Main.hs │ │ │ └── Paper.hs │ ├── Laplace │ │ ├── data │ │ │ ├── pls-100x100.bmp.gz │ │ │ ├── pls-100x100.pxm │ │ │ └── pls-400x400.bmp.gz │ │ ├── src-c │ │ │ └── Main.c │ │ └── src-repa │ │ │ ├── Main.hs │ │ │ ├── SolverGet.hs │ │ │ └── SolverStencil.hs │ ├── MMult │ │ ├── data │ │ │ ├── id-10x10.mat │ │ │ ├── random1-100x100.mat.gz │ │ │ ├── random2-100x100.mat.gz │ │ │ └── up-4x4.mat │ │ ├── src-c │ │ │ └── Main.c │ │ └── src-repa │ │ │ ├── Main.hs │ │ │ └── Solver.hs │ ├── PageRank │ │ ├── LICENSE │ │ ├── Setup.hs │ │ ├── data │ │ │ ├── pages.txt │ │ │ └── titles.txt │ │ ├── pagerank.cabal │ │ └── src │ │ │ ├── External │ │ │ ├── Count.hs │ │ │ ├── Rank.hs │ │ │ ├── Step.hs │ │ │ └── Titles.hs │ │ │ ├── Internal │ │ │ ├── Load.hs │ │ │ ├── Rank.hs │ │ │ └── Step.hs │ │ │ ├── Main.hs │ │ │ ├── Page.hs │ │ │ └── Progress.hs │ ├── QuickHull │ │ ├── Main.hs │ │ ├── Points.hs │ │ ├── SVG.hs │ │ ├── Solver.hs │ │ ├── SolverChunks.hs │ │ └── old │ │ │ ├── QuickHull.hs │ │ │ └── Solver.hs │ ├── QuickSelect │ │ ├── Solver.hs │ │ └── Test.hs │ ├── SMVM │ │ ├── Main.hs │ │ ├── Solver.hs │ │ └── Test.hs │ ├── Sobel │ │ ├── src-opencv │ │ │ └── Main.cpp │ │ └── src-repa │ │ │ ├── Main.hs │ │ │ ├── Solver.hs │ │ │ └── SolverSeparated.hs │ ├── ThreadLocal │ │ └── Main.hs │ ├── UnitTesting │ │ └── UnitTesting.hs │ └── Volume │ │ └── Main.hs ├── libc │ ├── BMP.c │ ├── BMP.h │ ├── ColorRamp.c │ ├── ColorRamp.h │ ├── Matrix.c │ ├── Matrix.h │ ├── Timing.c │ └── Timing.h └── repa-examples.cabal ├── repa-flow ├── Data │ └── Repa │ │ ├── Flow.hs │ │ └── Flow │ │ ├── Auto.hs │ │ ├── Auto │ │ ├── Base.hs │ │ ├── Debug.hs │ │ ├── Format.hs │ │ ├── IO.hs │ │ ├── Select.hs │ │ ├── SizedIO.hs │ │ └── ZipWith.hs │ │ ├── Chunked.hs │ │ ├── Chunked │ │ ├── Base.hs │ │ ├── Fold.hs │ │ ├── Folds.hs │ │ ├── Generic.hs │ │ ├── Groups.hs │ │ ├── IO.hs │ │ ├── Map.hs │ │ ├── Process.hs │ │ └── Replicate.hs │ │ ├── Generic.hs │ │ ├── Generic │ │ ├── Array │ │ │ ├── Chunk.hs │ │ │ ├── Distribute.hs │ │ │ ├── Shuffle.hs │ │ │ └── Unchunk.hs │ │ ├── Base.hs │ │ ├── Connect.hs │ │ ├── Debug.hs │ │ ├── Eval.hs │ │ ├── IO.hs │ │ ├── IO │ │ │ ├── Base.hs │ │ │ ├── Lines.hs │ │ │ ├── Sieve.hs │ │ │ └── XSV.hs │ │ ├── List.hs │ │ ├── Map.hs │ │ ├── Operator.hs │ │ └── Process.hs │ │ ├── IO │ │ └── Bucket.hs │ │ ├── Simple.hs │ │ ├── Simple │ │ ├── Base.hs │ │ ├── Chunk.hs │ │ ├── IO.hs │ │ ├── List.hs │ │ └── Operator.hs │ │ └── States.hs ├── LICENSE ├── examples │ ├── 00-Start │ │ └── Main.hs │ ├── 01-Copy │ │ └── Main.hs │ ├── 02-Fields │ │ └── Main.hs │ ├── 03-GroupSum │ │ └── Main.hs │ ├── 04-Shuffle │ │ └── Main.hs │ └── 05-Sieve │ │ └── Config.hs ├── include │ └── repa-flow.h ├── repa-flow.cabal └── tutorial │ └── 00-GettingStarted.ipynb ├── repa-io ├── Data │ └── Array │ │ └── Repa │ │ └── IO │ │ ├── BMP.hs │ │ ├── Binary.hs │ │ ├── Internals │ │ └── Text.hs │ │ ├── Matrix.hs │ │ ├── Timing.hs │ │ └── Vector.hs ├── LICENSE ├── Setup.hs └── repa-io.cabal ├── repa-machine ├── Data │ └── Repa │ │ ├── Machine.hs │ │ └── Machine │ │ ├── Base.hs │ │ ├── Eval.hs │ │ ├── Step.hs │ │ └── Transition.hs ├── LICENSE ├── example │ └── Map.hs └── repa-machine.cabal ├── repa-query ├── Data │ └── Repa │ │ ├── Query.hs │ │ └── Query │ │ ├── Build.hs │ │ ├── Build │ │ ├── Repa.hs │ │ └── Repa │ │ │ ├── Exp.hs │ │ │ ├── Graph.hs │ │ │ └── Job.hs │ │ ├── Graph.hs │ │ ├── Graph │ │ ├── Compounds.hs │ │ ├── Eval.hs │ │ ├── Eval │ │ │ ├── Env.hs │ │ │ └── Exp.hs │ │ ├── Exp.hs │ │ ├── Graph.hs │ │ └── JSON.hs │ │ ├── Job.hs │ │ ├── Job │ │ ├── Exec.hs │ │ ├── JSON.hs │ │ └── Spec.hs │ │ ├── Runtime.hs │ │ ├── Runtime │ │ ├── Driver.hs │ │ └── Primitive.hs │ │ ├── Source.hs │ │ ├── Source │ │ ├── Builder.hs │ │ ├── External.hs │ │ ├── Interact.hs │ │ └── Primitive │ │ │ ├── Literal.hs │ │ │ ├── Operator.hs │ │ │ ├── Projection.hs │ │ │ ├── Scalar.hs │ │ │ └── Sources.hs │ │ └── Transform │ │ └── Namify.hs ├── LICENSE ├── include │ └── repa-query.h └── repa-query.cabal ├── repa-scalar ├── Data │ └── Repa │ │ └── Scalar │ │ ├── Box.hs │ │ ├── Date32.hs │ │ ├── Double.hs │ │ ├── Int.hs │ │ ├── Option.hs │ │ ├── Product.hs │ │ └── Singleton │ │ ├── Bool.hs │ │ └── Nat.hs ├── LICENSE └── repa-scalar.cabal ├── repa-store ├── Data │ └── Repa │ │ └── Store │ │ ├── Codec │ │ └── XSV.hs │ │ ├── Flow.hs │ │ ├── Format.hs │ │ ├── Object.hs │ │ ├── Object │ │ ├── Column.hs │ │ ├── Dimension.hs │ │ ├── Family.hs │ │ └── Table.hs │ │ ├── Partitions.hs │ │ ├── Prim │ │ ├── BiMap.hs │ │ └── HashLog.hs │ │ └── Resolve.hs ├── LICENSE ├── include │ └── repa-store.h └── repa-store.cabal ├── repa-stream ├── Data │ └── Repa │ │ ├── Chain.hs │ │ ├── Chain │ │ ├── Base.hs │ │ ├── Folds.hs │ │ ├── Scan.hs │ │ └── Weave.hs │ │ ├── Stream.hs │ │ ├── Stream │ │ ├── Compact.hs │ │ ├── Concat.hs │ │ ├── Dice.hs │ │ ├── Extract.hs │ │ ├── Insert.hs │ │ ├── Merge.hs │ │ ├── Pad.hs │ │ ├── Ratchet.hs │ │ ├── Replicate.hs │ │ └── Segment.hs │ │ └── Vector │ │ ├── Generic.hs │ │ └── Unboxed.hs ├── LICENSE ├── include │ └── repa-stream.h └── repa-stream.cabal ├── repa-tools ├── LICENSE ├── repa-tools.cabal └── tools │ ├── build │ ├── Config.hs │ └── Main.hs │ ├── fields │ ├── Config.hs │ └── Main.hs │ ├── sieve │ ├── Config.hs │ └── Main.hs │ └── tags │ ├── Config.hs │ └── Main.hs ├── repa ├── Data │ └── Array │ │ ├── Repa.hs │ │ └── Repa │ │ ├── Arbitrary.hs │ │ ├── Base.hs │ │ ├── Eval.hs │ │ ├── Eval │ │ ├── Chunked.hs │ │ ├── Cursored.hs │ │ ├── Elt.hs │ │ ├── Gang.hs │ │ ├── Interleaved.hs │ │ ├── Load.hs │ │ ├── Reduction.hs │ │ ├── Selection.hs │ │ └── Target.hs │ │ ├── Index.hs │ │ ├── Operators │ │ ├── IndexSpace.hs │ │ ├── Interleave.hs │ │ ├── Mapping.hs │ │ ├── Reduction.hs │ │ ├── Selection.hs │ │ └── Traversal.hs │ │ ├── Repr │ │ ├── ByteString.hs │ │ ├── Cursored.hs │ │ ├── Delayed.hs │ │ ├── ForeignPtr.hs │ │ ├── HintInterleave.hs │ │ ├── HintSmall.hs │ │ ├── Partitioned.hs │ │ ├── Unboxed.hs │ │ ├── Undefined.hs │ │ └── Vector.hs │ │ ├── Shape.hs │ │ ├── Slice.hs │ │ ├── Specialised │ │ └── Dim2.hs │ │ ├── Stencil.hs │ │ ├── Stencil │ │ ├── Base.hs │ │ ├── Dim2.hs │ │ ├── Partition.hs │ │ └── Template.hs │ │ └── Unsafe.hs ├── LICENSE ├── Setup.hs └── repa.cabal ├── stack-7.10.yaml ├── stack-8.0.yaml ├── stack-8.2.yaml ├── stack-8.4.yaml └── stack-8.6.yaml /.authorspellings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/.authorspellings -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/RELEASE-CHECKLIST.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/cabal.project -------------------------------------------------------------------------------- /icebox/abandoned/DirectFlow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/DirectFlow.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-coflow/Data/Array/Repa/CoFlow/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-coflow/Data/Array/Repa/CoFlow/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-coflow/Data/Array/Repa/CoFlow/Seq/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-coflow/Data/Array/Repa/CoFlow/Seq/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Distro.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Distro.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Flow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Flow.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Append.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Append.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Fold.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Generate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Generate.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Map.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Pack.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Project.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Operator/Project.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Segd.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/Segd.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/SegdSplit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Par/SegdSplit.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Append.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Append.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Combine.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Combine.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Dup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Dup.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Fold.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Generate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Generate.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Map.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Pack.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Project.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Project.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Slurp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Slurp.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Zip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Operator/Zip.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Report.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Report.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Sink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Sink.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Source.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Data/Array/Repa/Flow/Seq/Source.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/LICENSE -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/Makefile -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/NOTES -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/repa-flow.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/repa-flow.cabal -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/test/fusion/TestPar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/test/fusion/TestPar.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/test/fusion/TestSeq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/test/fusion/TestSeq.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/test/props/TestPar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/test/props/TestPar.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/test/props/TestSeq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/test/props/TestSeq.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-flow/test/seq/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-flow/test/seq/Unboxed.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/FatName.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/FatName.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/GHC/Pretty.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/GHC/Pretty.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Pass/Dump.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Pass/Dump.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Pass/Lower.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Pass/Lower.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Pipeline.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Pipeline.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Primitives.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Primitives.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Primitives/Selectors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/Primitives/Selectors.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert/Type.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert/Var.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Convert/Var.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect/Prim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect/Prim.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToDDC/Detect/Type.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Prim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Prim.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Type.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Type.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Var.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Var.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Wrap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/Data/Array/Repa/Plugin/ToGHC/Wrap.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/LICENSE -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/repa-plugin.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/repa-plugin.cabal -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/01-Simple/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/01-Simple/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/02-Opaque/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/02-Opaque/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/03-Prims/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/03-Prims/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/10-Pack/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/10-Pack/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/20-Vector/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/20-Vector/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/Makefile -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_DotProduct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_DotProduct.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_FilterMax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_FilterMax.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_FilterSum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_FilterSum.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_MapMap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_MapMap.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_NestedFilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_NestedFilter.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_QuickHull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Main_QuickHull.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/QuickHull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/QuickHull.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Timing.c -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Timing.h -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/c/src/Vector.h -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/DotProduct/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/DotProduct/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/DotProduct/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/DotProduct/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/FilterMax/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/FilterMax/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/FilterSum/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/FilterSum/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/FilterSum/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/FilterSum/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/MapMap/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/MapMap/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/MapMap/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/MapMap/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/NestedFilter/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/NestedFilter/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/NestedFilter/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/NestedFilter/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/Points/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/Points/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/QuickHull/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/QuickHull/Main.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/QuickHull/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/QuickHull/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/QuickSort/Quicksort.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-plugin/test/90-Benchmarks/repa/QuickSort/Quicksort.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Fallback.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Fallback.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Double.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Double.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Float.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Float.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Int.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Int.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Loop.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Loop.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Utils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Utils.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Word.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Prim/Word.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Process.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Process.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Rate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Rate.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Ref.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Ref.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Sel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Sel.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Series.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Series.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Data/Array/Repa/Series/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/Data/Array/Repa/Series/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/LICENSE -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/icebox/Series.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/icebox/Series.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-series/repa-series.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-series/repa-series.cabal -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Append.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Append.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Eval.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Eval.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Indexed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Indexed.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Indexs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Indexs.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Map.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Replicate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Chain/Replicate.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Distro.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Distro.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Combine.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Combine.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Eval.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Eval.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Flatten.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Flatten.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Fold.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Indexs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Indexs.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Map.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Pack.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Scan.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/Data/Array/Repa/Stream/Scan.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/LICENSE -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/repa-stream.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/repa-stream.cabal -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/scratch/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/scratch/Solver.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/scratch/Stream.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/scratch/Stream.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/test/fusion/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/test/fusion/Map.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-stream/test/fusion/Replicate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-stream/test/fusion/Replicate.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa/Operators/Chains.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa/Operators/Chains.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa/Operators/Replicate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa/Operators/Replicate.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa/Operators/Zip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa/Operators/Zip.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa/Repr/Chain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa/Repr/Chain.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa/Repr/Chunked.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa/Repr/Chunked.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/Data/Vector/Repa/Repr/Sliced.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/Data/Vector/Repa/Repr/Sliced.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Repr/Chain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Repr/Chain.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Repr/Stream.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Repr/Stream.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Combine.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Combine.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Flatten.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Flatten.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Fold.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Indexed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Indexed.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Indexs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Indexs.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Map.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Pack.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Scan.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Scan.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Zip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Operators/Zip.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Segd.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Segd.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Segd/Split.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Segd/Split.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Sel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/chains/Data/Array/Repa/Vector/Sel.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/compile-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/compile-test -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/cuts/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/cuts/Unboxed.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/cuts/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/cuts/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/fusion/ChainChunk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/fusion/ChainChunk.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector-old/fusion/ChainSeq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector-old/fusion/ChainSeq.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Base.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Compute.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Compute.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Compute/Load.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Compute/Load.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Compute/Target.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Compute/Target.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Distro.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Distro.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Index.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Index.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Append.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Append.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Bulk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Bulk.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Combine.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Combine.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Flatten.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Flatten.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Fold.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Map.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Pack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Pack.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Project.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Project.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Replicate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Replicate.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Traverse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Traverse.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Unzip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Unzip.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Zip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Operators/Zip.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Repr/Delayed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Repr/Delayed.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Repr/Flow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Repr/Flow.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Repr/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Repr/Unboxed.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Segd.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Segd.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Shape.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/Data/Array/Repa/Vector/Shape.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/LICENSE -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/repa-vector.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/repa-vector.cabal -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/test/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/test/Test.hs -------------------------------------------------------------------------------- /icebox/abandoned/repa-vector/test/props/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/abandoned/repa-vector/test/props/Test.hs -------------------------------------------------------------------------------- /icebox/deprecated/repa-bytestring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/deprecated/repa-bytestring/LICENSE -------------------------------------------------------------------------------- /icebox/deprecated/repa-bytestring/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /icebox/deprecated/repa-bytestring/repa-bytestring.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/deprecated/repa-bytestring/repa-bytestring.cabal -------------------------------------------------------------------------------- /icebox/stashed/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/stashed/Base.hs -------------------------------------------------------------------------------- /icebox/stashed/Boxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/stashed/Boxed.hs -------------------------------------------------------------------------------- /icebox/stashed/Checked.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/stashed/Checked.hs -------------------------------------------------------------------------------- /icebox/stashed/Foreign.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/stashed/Foreign.hs -------------------------------------------------------------------------------- /icebox/stashed/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/icebox/stashed/Unboxed.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/ColorRamp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/ColorRamp.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/Complex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/Complex.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/Convolve.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/Convolve.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/DFT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/DFT.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/DFT/Center.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/DFT/Center.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/DFT/Roots.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/DFT/Roots.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/FFT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/FFT.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/Matrix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/Matrix.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/Pixel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/Pixel.hs -------------------------------------------------------------------------------- /repa-algorithms/Data/Array/Repa/Algorithms/Randomish.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/Data/Array/Repa/Algorithms/Randomish.hs -------------------------------------------------------------------------------- /repa-algorithms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/LICENSE -------------------------------------------------------------------------------- /repa-algorithms/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /repa-algorithms/repa-algorithms.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-algorithms/repa-algorithms.cabal -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Auto.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Auto.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Auto/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Auto/Base.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Auto/Convert.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Auto/Convert.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Auto/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Auto/Format.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Auto/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Auto/IO.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Auto/Operator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Auto/Operator.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Auto/XSV.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Auto/XSV.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Generic.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Generic/Convert.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Generic/Convert.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Generic/Index.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Generic/Index.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Generic/Load.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Generic/Load.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Generic/Slice.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Generic/Slice.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Generic/Target.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Generic/Target.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Generic/Unpacks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Generic/Unpacks.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Bulk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Bulk.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Check.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Check.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Layout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Layout.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Load.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Load.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Compact.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Compact.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Concat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Concat.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Filter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Filter.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Fold.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Group.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Group.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Insert.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Insert.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Merge.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Merge.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Partition.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Partition.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Process.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Process.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Reduce.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Reduce.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Operator/Replicate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Operator/Replicate.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Shape.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Shape.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Internals/Target.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Internals/Target.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/Base.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstArray.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstArray.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstBox.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstBox.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstChar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstChar.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstDate32.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstDate32.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstFloat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstFloat.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstInt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstInt.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstList.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstList.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstMaybe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstMaybe.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstProduct.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstProduct.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstText.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstText.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstTuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstTuple.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstUnit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstUnit.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/InstWord.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/InstWord.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/Operator/Lines.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/Operator/Lines.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Auto/Operator/Unpackables.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Auto/Operator/Unpackables.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Boxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Boxed.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Foreign.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Foreign.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Foreign/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Foreign/Base.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Foreign/Lines.hs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Nested.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Nested.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Material/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Material/Unboxed.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta/Delayed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta/Delayed.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta/Delayed2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta/Delayed2.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta/Dense.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta/Dense.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta/Linear.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta/Linear.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta/RowWise.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta/RowWise.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta/Tuple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta/Tuple.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Array/Meta/Window.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Array/Meta/Window.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Eval/Chain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Eval/Chain.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Eval/Stream.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Eval/Stream.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Fusion/Unpack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Fusion/Unpack.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Nice.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Nice.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Nice/Display.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Nice/Display.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Nice/Present.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Nice/Present.hs -------------------------------------------------------------------------------- /repa-array/Data/Repa/Nice/Tabulate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/Data/Repa/Nice/Tabulate.hs -------------------------------------------------------------------------------- /repa-array/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/LICENSE -------------------------------------------------------------------------------- /repa-array/include/repa-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/include/repa-array.h -------------------------------------------------------------------------------- /repa-array/repa-array.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-array/repa-array.cabal -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/App.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/App.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Ascii.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Ascii.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Binary.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Binary.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Bytes.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Bytes.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Date32.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Date32.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Fields.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Fields.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Maybe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Maybe.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Numeric.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Numeric.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Object.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Object.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Sep.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Sep.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/String.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/String.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Text.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Format/Unit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Format/Unit.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Formats.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Formats.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Internal/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Internal/Format.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Internal/Packable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Internal/Packable.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Internal/Packer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Internal/Packer.hs -------------------------------------------------------------------------------- /repa-convert/Data/Repa/Convert/Internal/Unpacker.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/Data/Repa/Convert/Internal/Unpacker.hs -------------------------------------------------------------------------------- /repa-convert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/LICENSE -------------------------------------------------------------------------------- /repa-convert/include/repa-convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/include/repa-convert.h -------------------------------------------------------------------------------- /repa-convert/repa-convert.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-convert/repa-convert.cabal -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Elt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Elt.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Gang.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Gang.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Par.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Par.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Par/Chunked.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Par/Chunked.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Par/Cursored.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Par/Cursored.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Par/Interleaved.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Par/Interleaved.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Par/Reduction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Par/Reduction.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Seq.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Seq.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Seq/Chunked.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Seq/Chunked.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Seq/Cursored.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Seq/Cursored.hs -------------------------------------------------------------------------------- /repa-eval/Data/Repa/Eval/Generic/Seq/Reduction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/Data/Repa/Eval/Generic/Seq/Reduction.hs -------------------------------------------------------------------------------- /repa-eval/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/LICENSE -------------------------------------------------------------------------------- /repa-eval/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /repa-eval/repa-eval.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-eval/repa-eval.cabal -------------------------------------------------------------------------------- /repa-examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/LICENSE -------------------------------------------------------------------------------- /repa-examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/Makefile -------------------------------------------------------------------------------- /repa-examples/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /repa-examples/broken/Fluid/legacy/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/broken/Fluid/legacy/demo.c -------------------------------------------------------------------------------- /repa-examples/broken/Fluid/legacy/solver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/broken/Fluid/legacy/solver.c -------------------------------------------------------------------------------- /repa-examples/broken/MDim/MDim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/broken/MDim/MDim.hs -------------------------------------------------------------------------------- /repa-examples/data/cosine-horizontal.bmp.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/data/cosine-horizontal.bmp.gz -------------------------------------------------------------------------------- /repa-examples/data/cosine-rotated.bmp.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/data/cosine-rotated.bmp.gz -------------------------------------------------------------------------------- /repa-examples/data/cosine-vertical.bmp.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/data/cosine-vertical.bmp.gz -------------------------------------------------------------------------------- /repa-examples/data/lena.bmp.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/data/lena.bmp.gz -------------------------------------------------------------------------------- /repa-examples/data/step20.bmp.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/data/step20.bmp.gz -------------------------------------------------------------------------------- /repa-examples/examples/Blur/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Blur/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/Canny/src-opencv/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Canny/src-opencv/Main.cpp -------------------------------------------------------------------------------- /repa-examples/examples/Canny/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Canny/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/FFT2d/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/FFT2d/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-fftw/FFTW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-fftw/FFTW.c -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-fftw/Jones.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-fftw/Jones.c -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-fftw/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-fftw/Main.c -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-paper/FFT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-paper/FFT.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-paper/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-paper/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-split/FFT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-split/FFT.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-traverse/FFT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-traverse/FFT.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-vector/FFT.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-vector/FFT.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass2d/src-vector/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass2d/src-vector/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass3d/src-fftw/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass3d/src-fftw/Main.c -------------------------------------------------------------------------------- /repa-examples/examples/FFT/HighPass3d/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/HighPass3d/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/Paper/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/Paper/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/FFT/Paper/src-repa/Paper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/FFT/Paper/src-repa/Paper.hs -------------------------------------------------------------------------------- /repa-examples/examples/Laplace/data/pls-100x100.bmp.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Laplace/data/pls-100x100.bmp.gz -------------------------------------------------------------------------------- /repa-examples/examples/Laplace/data/pls-100x100.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Laplace/data/pls-100x100.pxm -------------------------------------------------------------------------------- /repa-examples/examples/Laplace/data/pls-400x400.bmp.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Laplace/data/pls-400x400.bmp.gz -------------------------------------------------------------------------------- /repa-examples/examples/Laplace/src-c/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Laplace/src-c/Main.c -------------------------------------------------------------------------------- /repa-examples/examples/Laplace/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Laplace/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/Laplace/src-repa/SolverGet.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Laplace/src-repa/SolverGet.hs -------------------------------------------------------------------------------- /repa-examples/examples/Laplace/src-repa/SolverStencil.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Laplace/src-repa/SolverStencil.hs -------------------------------------------------------------------------------- /repa-examples/examples/MMult/data/id-10x10.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/MMult/data/id-10x10.mat -------------------------------------------------------------------------------- /repa-examples/examples/MMult/data/random1-100x100.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/MMult/data/random1-100x100.mat.gz -------------------------------------------------------------------------------- /repa-examples/examples/MMult/data/random2-100x100.mat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/MMult/data/random2-100x100.mat.gz -------------------------------------------------------------------------------- /repa-examples/examples/MMult/data/up-4x4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/MMult/data/up-4x4.mat -------------------------------------------------------------------------------- /repa-examples/examples/MMult/src-c/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/MMult/src-c/Main.c -------------------------------------------------------------------------------- /repa-examples/examples/MMult/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/MMult/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/MMult/src-repa/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/MMult/src-repa/Solver.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/LICENSE -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/data/pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/data/pages.txt -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/data/titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/data/titles.txt -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/pagerank.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/pagerank.cabal -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/External/Count.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/External/Count.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/External/Rank.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/External/Rank.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/External/Step.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/External/Step.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/External/Titles.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/External/Titles.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/Internal/Load.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/Internal/Load.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/Internal/Rank.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/Internal/Rank.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/Internal/Step.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/Internal/Step.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/Page.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/Page.hs -------------------------------------------------------------------------------- /repa-examples/examples/PageRank/src/Progress.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/PageRank/src/Progress.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickHull/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickHull/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickHull/Points.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickHull/Points.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickHull/SVG.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickHull/SVG.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickHull/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickHull/Solver.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickHull/SolverChunks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickHull/SolverChunks.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickHull/old/QuickHull.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickHull/old/QuickHull.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickHull/old/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickHull/old/Solver.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickSelect/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickSelect/Solver.hs -------------------------------------------------------------------------------- /repa-examples/examples/QuickSelect/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/QuickSelect/Test.hs -------------------------------------------------------------------------------- /repa-examples/examples/SMVM/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/SMVM/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/SMVM/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/SMVM/Solver.hs -------------------------------------------------------------------------------- /repa-examples/examples/SMVM/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/SMVM/Test.hs -------------------------------------------------------------------------------- /repa-examples/examples/Sobel/src-opencv/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Sobel/src-opencv/Main.cpp -------------------------------------------------------------------------------- /repa-examples/examples/Sobel/src-repa/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Sobel/src-repa/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/Sobel/src-repa/Solver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Sobel/src-repa/Solver.hs -------------------------------------------------------------------------------- /repa-examples/examples/Sobel/src-repa/SolverSeparated.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Sobel/src-repa/SolverSeparated.hs -------------------------------------------------------------------------------- /repa-examples/examples/ThreadLocal/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/ThreadLocal/Main.hs -------------------------------------------------------------------------------- /repa-examples/examples/UnitTesting/UnitTesting.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/UnitTesting/UnitTesting.hs -------------------------------------------------------------------------------- /repa-examples/examples/Volume/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/examples/Volume/Main.hs -------------------------------------------------------------------------------- /repa-examples/libc/BMP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/BMP.c -------------------------------------------------------------------------------- /repa-examples/libc/BMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/BMP.h -------------------------------------------------------------------------------- /repa-examples/libc/ColorRamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/ColorRamp.c -------------------------------------------------------------------------------- /repa-examples/libc/ColorRamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/ColorRamp.h -------------------------------------------------------------------------------- /repa-examples/libc/Matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/Matrix.c -------------------------------------------------------------------------------- /repa-examples/libc/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/Matrix.h -------------------------------------------------------------------------------- /repa-examples/libc/Timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/Timing.c -------------------------------------------------------------------------------- /repa-examples/libc/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/libc/Timing.h -------------------------------------------------------------------------------- /repa-examples/repa-examples.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-examples/repa-examples.cabal -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto/Base.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto/Debug.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto/Debug.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto/Format.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto/IO.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto/Select.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto/Select.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto/SizedIO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto/SizedIO.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Auto/ZipWith.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Auto/ZipWith.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Base.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Fold.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Folds.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Folds.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Generic.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Groups.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Groups.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/IO.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Map.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Process.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Process.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Chunked/Replicate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Chunked/Replicate.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Array/Chunk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Array/Chunk.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Array/Distribute.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Array/Distribute.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Array/Shuffle.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Array/Shuffle.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Array/Unchunk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Array/Unchunk.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Base.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Connect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Connect.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Debug.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Debug.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Eval.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Eval.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/IO.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/IO/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/IO/Base.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/IO/Lines.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/IO/Lines.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/IO/Sieve.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/IO/Sieve.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/IO/XSV.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/IO/XSV.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/List.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Map.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Operator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Operator.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Generic/Process.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Generic/Process.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/IO/Bucket.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/IO/Bucket.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Simple.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Simple/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Simple/Base.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Simple/Chunk.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Simple/Chunk.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Simple/IO.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Simple/IO.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Simple/List.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Simple/List.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/Simple/Operator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/Simple/Operator.hs -------------------------------------------------------------------------------- /repa-flow/Data/Repa/Flow/States.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/Data/Repa/Flow/States.hs -------------------------------------------------------------------------------- /repa-flow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/LICENSE -------------------------------------------------------------------------------- /repa-flow/examples/00-Start/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/examples/00-Start/Main.hs -------------------------------------------------------------------------------- /repa-flow/examples/01-Copy/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/examples/01-Copy/Main.hs -------------------------------------------------------------------------------- /repa-flow/examples/02-Fields/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/examples/02-Fields/Main.hs -------------------------------------------------------------------------------- /repa-flow/examples/03-GroupSum/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/examples/03-GroupSum/Main.hs -------------------------------------------------------------------------------- /repa-flow/examples/04-Shuffle/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/examples/04-Shuffle/Main.hs -------------------------------------------------------------------------------- /repa-flow/examples/05-Sieve/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/examples/05-Sieve/Config.hs -------------------------------------------------------------------------------- /repa-flow/include/repa-flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/include/repa-flow.h -------------------------------------------------------------------------------- /repa-flow/repa-flow.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/repa-flow.cabal -------------------------------------------------------------------------------- /repa-flow/tutorial/00-GettingStarted.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-flow/tutorial/00-GettingStarted.ipynb -------------------------------------------------------------------------------- /repa-io/Data/Array/Repa/IO/BMP.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/Data/Array/Repa/IO/BMP.hs -------------------------------------------------------------------------------- /repa-io/Data/Array/Repa/IO/Binary.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/Data/Array/Repa/IO/Binary.hs -------------------------------------------------------------------------------- /repa-io/Data/Array/Repa/IO/Internals/Text.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/Data/Array/Repa/IO/Internals/Text.hs -------------------------------------------------------------------------------- /repa-io/Data/Array/Repa/IO/Matrix.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/Data/Array/Repa/IO/Matrix.hs -------------------------------------------------------------------------------- /repa-io/Data/Array/Repa/IO/Timing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/Data/Array/Repa/IO/Timing.hs -------------------------------------------------------------------------------- /repa-io/Data/Array/Repa/IO/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/Data/Array/Repa/IO/Vector.hs -------------------------------------------------------------------------------- /repa-io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/LICENSE -------------------------------------------------------------------------------- /repa-io/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /repa-io/repa-io.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-io/repa-io.cabal -------------------------------------------------------------------------------- /repa-machine/Data/Repa/Machine.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/Data/Repa/Machine.hs -------------------------------------------------------------------------------- /repa-machine/Data/Repa/Machine/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/Data/Repa/Machine/Base.hs -------------------------------------------------------------------------------- /repa-machine/Data/Repa/Machine/Eval.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/Data/Repa/Machine/Eval.hs -------------------------------------------------------------------------------- /repa-machine/Data/Repa/Machine/Step.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/Data/Repa/Machine/Step.hs -------------------------------------------------------------------------------- /repa-machine/Data/Repa/Machine/Transition.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/Data/Repa/Machine/Transition.hs -------------------------------------------------------------------------------- /repa-machine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/LICENSE -------------------------------------------------------------------------------- /repa-machine/example/Map.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/example/Map.hs -------------------------------------------------------------------------------- /repa-machine/repa-machine.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-machine/repa-machine.cabal -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Build.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Build.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Build/Repa.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Build/Repa.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Build/Repa/Exp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Build/Repa/Exp.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Build/Repa/Graph.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Build/Repa/Graph.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Build/Repa/Job.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Build/Repa/Job.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph/Compounds.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph/Compounds.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph/Eval.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph/Eval.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph/Eval/Env.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph/Eval/Env.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph/Eval/Exp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph/Eval/Exp.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph/Exp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph/Exp.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph/Graph.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph/Graph.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Graph/JSON.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Graph/JSON.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Job.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Job.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Job/Exec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Job/Exec.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Job/JSON.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Job/JSON.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Job/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Job/Spec.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Runtime.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Runtime.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Runtime/Driver.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Runtime/Driver.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Runtime/Primitive.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Runtime/Primitive.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/Builder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/Builder.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/External.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/External.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/Interact.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/Interact.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/Primitive/Literal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/Primitive/Literal.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/Primitive/Operator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/Primitive/Operator.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/Primitive/Projection.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/Primitive/Projection.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/Primitive/Scalar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/Primitive/Scalar.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Source/Primitive/Sources.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Source/Primitive/Sources.hs -------------------------------------------------------------------------------- /repa-query/Data/Repa/Query/Transform/Namify.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/Data/Repa/Query/Transform/Namify.hs -------------------------------------------------------------------------------- /repa-query/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/LICENSE -------------------------------------------------------------------------------- /repa-query/include/repa-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/include/repa-query.h -------------------------------------------------------------------------------- /repa-query/repa-query.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-query/repa-query.cabal -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Box.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Box.hs -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Date32.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Date32.hs -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Double.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Double.hs -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Int.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Int.hs -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Option.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Option.hs -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Product.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Product.hs -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Singleton/Bool.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Singleton/Bool.hs -------------------------------------------------------------------------------- /repa-scalar/Data/Repa/Scalar/Singleton/Nat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/Data/Repa/Scalar/Singleton/Nat.hs -------------------------------------------------------------------------------- /repa-scalar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/LICENSE -------------------------------------------------------------------------------- /repa-scalar/repa-scalar.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-scalar/repa-scalar.cabal -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Codec/XSV.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Codec/XSV.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Flow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Flow.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Format.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Format.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Object.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Object.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Object/Column.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Object/Column.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Object/Dimension.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Object/Dimension.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Object/Family.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Object/Family.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Object/Table.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Object/Table.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Partitions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Partitions.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Prim/BiMap.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Prim/BiMap.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Prim/HashLog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Prim/HashLog.hs -------------------------------------------------------------------------------- /repa-store/Data/Repa/Store/Resolve.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/Data/Repa/Store/Resolve.hs -------------------------------------------------------------------------------- /repa-store/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/LICENSE -------------------------------------------------------------------------------- /repa-store/include/repa-store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/include/repa-store.h -------------------------------------------------------------------------------- /repa-store/repa-store.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-store/repa-store.cabal -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Chain.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Chain.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Chain/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Chain/Base.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Chain/Folds.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Chain/Folds.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Chain/Scan.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Chain/Scan.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Chain/Weave.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Chain/Weave.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Compact.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Compact.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Concat.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Concat.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Dice.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Dice.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Extract.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Extract.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Insert.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Insert.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Merge.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Merge.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Pad.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Pad.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Ratchet.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Ratchet.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Replicate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Replicate.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Stream/Segment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Stream/Segment.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Vector/Generic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Vector/Generic.hs -------------------------------------------------------------------------------- /repa-stream/Data/Repa/Vector/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/Data/Repa/Vector/Unboxed.hs -------------------------------------------------------------------------------- /repa-stream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/LICENSE -------------------------------------------------------------------------------- /repa-stream/include/repa-stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/include/repa-stream.h -------------------------------------------------------------------------------- /repa-stream/repa-stream.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-stream/repa-stream.cabal -------------------------------------------------------------------------------- /repa-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/LICENSE -------------------------------------------------------------------------------- /repa-tools/repa-tools.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/repa-tools.cabal -------------------------------------------------------------------------------- /repa-tools/tools/build/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/build/Config.hs -------------------------------------------------------------------------------- /repa-tools/tools/build/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/build/Main.hs -------------------------------------------------------------------------------- /repa-tools/tools/fields/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/fields/Config.hs -------------------------------------------------------------------------------- /repa-tools/tools/fields/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/fields/Main.hs -------------------------------------------------------------------------------- /repa-tools/tools/sieve/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/sieve/Config.hs -------------------------------------------------------------------------------- /repa-tools/tools/sieve/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/sieve/Main.hs -------------------------------------------------------------------------------- /repa-tools/tools/tags/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/tags/Config.hs -------------------------------------------------------------------------------- /repa-tools/tools/tags/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa-tools/tools/tags/Main.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Arbitrary.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Arbitrary.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Base.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Chunked.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Chunked.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Cursored.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Cursored.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Elt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Elt.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Gang.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Gang.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Interleaved.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Interleaved.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Load.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Load.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Reduction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Reduction.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Selection.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Selection.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Eval/Target.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Eval/Target.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Index.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Index.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Operators/IndexSpace.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Operators/IndexSpace.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Operators/Interleave.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Operators/Interleave.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Operators/Mapping.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Operators/Mapping.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Operators/Reduction.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Operators/Reduction.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Operators/Selection.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Operators/Selection.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Operators/Traversal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Operators/Traversal.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/ByteString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/ByteString.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/Cursored.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/Cursored.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/Delayed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/Delayed.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/ForeignPtr.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/ForeignPtr.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/HintInterleave.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/HintInterleave.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/HintSmall.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/HintSmall.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/Partitioned.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/Partitioned.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/Unboxed.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/Unboxed.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/Undefined.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/Undefined.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Repr/Vector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Repr/Vector.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Shape.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Shape.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Slice.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Slice.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Specialised/Dim2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Specialised/Dim2.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Stencil.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Stencil.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Stencil/Base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Stencil/Base.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Stencil/Dim2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Stencil/Dim2.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Stencil/Partition.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Stencil/Partition.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Stencil/Template.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Stencil/Template.hs -------------------------------------------------------------------------------- /repa/Data/Array/Repa/Unsafe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/Data/Array/Repa/Unsafe.hs -------------------------------------------------------------------------------- /repa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/LICENSE -------------------------------------------------------------------------------- /repa/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /repa/repa.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/repa/repa.cabal -------------------------------------------------------------------------------- /stack-7.10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/stack-7.10.yaml -------------------------------------------------------------------------------- /stack-8.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/stack-8.0.yaml -------------------------------------------------------------------------------- /stack-8.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/stack-8.2.yaml -------------------------------------------------------------------------------- /stack-8.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/stack-8.4.yaml -------------------------------------------------------------------------------- /stack-8.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-repa/repa/HEAD/stack-8.6.yaml --------------------------------------------------------------------------------