Sam

Results 10 issues of Sam

I'm just trying egui for the first time and I'm very impressed, but I've immediately run into something that appears unsupported. I'm prototying an entity inspector for Bevy, and I...

feature-request
design

How can I get access to current metrics in a training loop? I want to do custom logging while the model runs - specifically I want to log to Weights...

[The documentation](https://www.tensorflow.org/swift/api_docs/Structs/Tensor#initrandomuniform:lowerbound:upperbound:seed:_1) for `Tensor(randomUniform:lowerBound:upperBound:seed:)` says > **Creates a tensor with the specified shape**, randomly sampling scalar values from a uniform distribution between lowerBound and upperBound. However, I have found that...

I've been thinking about ways to improve on the basic ChatGPT plugin model. It seems to me that it has two major limitations which could be overcome. - Full documentation...

feature
integration

The [matrix multiplication tutorial](https://triton-lang.org/main/getting-started/tutorials/03-matrix-multiplication.html) starts by saying: > In this tutorial, you will write a very short high-performance FP16 matrix multiplication kernel that achieves performance on parallel with cuBLAS. That...

#### Problem statement Unity's project structure plays badly with the standard C# practice of making your namespace match your directory. The standard tools try to prepend `Assets`, with similar issues...

enhancement

Now that this is open source, it would be good to have an `.editorconfig` setup for the project to help contributors maintain a consistent style.

feature

I just hit this exception. ``` MissingReferenceException: The object of type 'UnityMainThreadDispatcher' has been destroyed but you are still trying to access it. Your script should either check if it...

bug

I have auto refresh fully disabled in Unity's settings. However, sometimes Unity will spontaneously reload the domain for no apparent reason. Often it happens the moment I exit play mode...

feature
needs-refinement

--- ## Feature request I would like a nopython `@cfunc` to be able to launch a `@cuda.jit` kernel. ```python3 import numba.types as nt @numba.cuda.jit(nt.void(nt.CPointer(nt.float32), nt.CPointer(nt.float32)) def kernel_gpu(input, output): i =...

feature_request
CUDA