Chris Elrod
Chris Elrod
@quantonganh I am always getting a `j` at the end for some reason, and the carriage return isn't being processed. That is, `script foo.txt` gives me an open command with...
> @chriselrod I am having the same issue with the `j` being appended when piping the echo command and the carriage return not working when using the inline command. Did...
Hi, Thank you for the response. I'd installed HSA associated with roc 1.9.x from the COPRs. Not knowing how far the dependency/compatibility rabbit hole goes, and following the advice of...
Hmm. Okay. I removed the old build directory, created a new one, and rebuilt. Now I have 14 unexpected failures and 718 expected passes. Full output: ``` $ make test...
This is a minimal reproducer: ```julia module TestRepo using Requires function __init__() @require ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" begin @require ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" using .ForwardDiff: Dual end end end ``` Then starting...
```julia using CpuId function coreid() eax, ebx, ecx, edx = CpuId.cpuid(1, 0) if ( (edx & (0x00000001 > 24; end CPU < 0 ? 0 : CPU end ```
`cpucycle_coreid` works for me: ```julia julia> for i in 1:nthreads() println("Running on thread $i (glibc_coreid: $(tglibc_coreid(i)), cpuid_coreid: $(tcpuid_coreid(i)), cpucycle_coreid: $(tcpucycle_coreid(i)))") # @sync @tspawnat i sum(abs2, rand()^2 + rand()^2 for i...
I'd prefer `nothing`, as it's the standard of methods like `findfirst`, and will generally force you to handle it immediately or throw (as not many people define methods for nothing),...
I haven't seen this particular problem in a while. If anyone else has, please feel free to reopen.
It only has `gemm`s, so there'd be a lot missing. But perhaps it could motivate more effort to implement linear algebra functionality. Unfortunately, we couldn't use RecursiveFactorization, since it still...