Too Yuen Min
Too Yuen Min
MWE: ```julia (jl_TQljLn) pkg> st Status `/tmp/jl_TQljLn/Project.toml` [a09fc81d] ImageCore v0.9.4 julia> x = rand(3,100,100,10); # 10 images julia> @views x1 = x[:,:,:,1]; # first image julia> size(x1) (3, 100, 100)...
Snap DoA-ToA estimation using Hough transform is implemented. Given an array sensor data, `snapdoatoa` returns snap DoAToAs in the form of `Vector{NTuple{3}}` for 2D DoA and `Vector{NTuple{2}}` for 1D DoA....
MWE: ```julia julia> using PyCall julia> py""" import cv2 """ julia> import VideoIO ERROR: InitError: could not load library "/home/arl/.julia/artifacts/1cfe0ebb804cb8b0d7d1e8f98e5cda94b2b31b3d/lib/libgio-2.0.so" /home/arl/.julia/artifacts/1cfe0ebb804cb8b0d7d1e8f98e5cda94b2b31b3d/lib/libgobject-2.0.so.0: undefined symbol: g_uri_ref Stacktrace: [1] dlopen(s::String, flags::UInt32; throw_error::Bool) @...
MWE: ``` for _ ∈ 1:1000000 matread("test/v7/array.mat") end ``` Memory usage is growing until OOM. It works fine when reading mat files v6 and v7.3. Julia and package version: ```...
To install cuda-toolkit 11.7.1: ```julia julia> CondaPkg.add("cuda-toolkit"; version="11.7.1", channel = "nvidia/label/cuda-11.7.1") (test-condapkg) pkg> conda st CondaPkg Status /home/ymtoo/Projects/tmp/test-condapkg/CondaPkg.toml Environment /home/ymtoo/Projects/tmp/test-condapkg/.CondaPkg/env Packages cuda-toolkit v11.7.1 (11.7.1, channel=nvidia/label/cuda-11.7.1) shell> .CondaPkg/env/bin/nvcc --version nvcc: NVIDIA...
MWE: ``` julia> using CondaPkg (jl_zo5d7y) pkg> conda pip_add numpy CondaPkg Found dependencies: C:\Users\Admin\AppData\Local\Temp\jl_zo5d7y\CondaPkg.toml CondaPkg Resolving changes + numpy (pip) + pip CondaPkg Creating environment │ C:\Users\Admin\.julia\artifacts\8a699d2ba8dad86c428374c177ac63f8a59fd8d9\bin\micromamba.exe │ -r C:\Users\Admin\.julia\scratchspaces\0b3b1443-0f03-428d-bdfb-f27f9c1191ea\root...
MWE (`test_rapids.jl`): ```julia using CSV using DataFrames using RAPIDS csvpath = "./metadata.csv" @info "Generate dummy data" X = randn(100000, 5) df = DataFrame(X, :auto) CSV.write(csvpath, df) @info "Read the data"...
With an FP16 input, the [example](https://juliagpu.github.io/KernelAbstractions.jl/v0.9/examples/atomix/) ```julia using CUDA, KernelAbstractions, Atomix function index_fun_fixed(arr; backend=get_backend(arr)) out = similar(arr) fill!(out, 0) kernel! = my_kernel_fixed!(backend) kernel!(out, arr, ndrange=(size(arr, 1), size(arr, 2))) return out...
`get_viewmat` with `@torch_compile()` on Nvidia Orin NX and [PyTorch](https://developer.download.nvidia.com/compute/redist/jp/v60dp/pytorch/) throws an error. ```python >>> import torch >>> from nerfstudio.models import splatfacto >>> x = torch.randn(1, 3, 4).to("cuda") >>> splatfacto.get_viewmat(x) Traceback...
When saving images with ImageMagick.jl on NVIDIA Jetson TX2 (Ubuntu 18.04), the encoded colors appear incorrect. MWE: ```julia using TestImages using ImageMagick using JpegTurbo img = testimage("lighthouse.png") JpegTurbo.save("jpegturbo_lighthouse.jpg", img) ImageMagick.save("imagemagick_lighthouse.jpg",...