-
Because we follow Vulkan closely for the HAL API, we don't have many safety guarantees for most of the API usage. A few users have asked to have the explicit unsafe annotation to make it more obvious …
-
# Putting the VM in TVM: The Relay Virtual Machine
We have previously introduced Relay, a new program representation, which is able to represent and optimize a greater breadth of machine learning…
-
It would nice if the documentation compared this to crossbeam::atomic::ArcCell. This appears to be similar while having more features but I'm unsure when I would pick one over the other.
-
When extending a class, the following code is output:
``` js
Bar.prototype = Object.create(Foo.prototype, {
constructor: {
value: Foo,
enumerable: false,
writable: true,
configurabl…
-
```c
#include
#include
#include
#include
#include
#include
#include
#include
#include "lfq.h"
void one_enq_and_multi_deq(pthread_t *threads);
void* worker_s(void *);
void* wo…
-
The incinerator tries to delete the data inside `swap` and similar methods. But if there's a concurrent `load`, it just stores the `Arc` until next time. But the next time does not have to come in the…
-
I am working on a port of this project: https://github.com/jaredleekatzman/DeepSurv to use Keras instead of Lasagne.
My question centers upon how to best integrate a new custom loss function (cox p…
-
I know PR #36 has been merged long ago, but I've been looking to solve problem with safety of dynamic functions similar to one described in #5 and decided to see what Inkwell does here.
While the `…
-
Tracking issue for https://github.com/rust-lang/rfcs/pull/1542
----
To do:
* [ ] Is existing documentation satisfactory?
* [x] https://github.com/rust-lang/rust/pull/56796 Change bounds on `…
-
With `Box` built deeply into the compiler, one can currently write
``` rust
let mut y = 1;
let x: Box = box &mut y;
**x = 2;
```
That is, one can mutate through a `&mut` stored in the `Box`, even if…
huonw updated
6 years ago