-
The program
```
type option 'a = #some a | #none
let bind 'a 'b (m: option a) (f: a -> option b): option b =
match m
case #none -> #none
case #some a -> f a
entry foo (n: i32): bool =…
-
Target Platform: iOS
Target OS version/browser: 14.0 to 14.3
Devices: iPhone
![Screenshot 2021-01-19 at 08 29 20](https://user-images.githubusercontent.com/3778474/105002302-4f951600-5a31-11eb-84…
-
Somewhat surprisingly, the compiler messes this up:
```
let main (xs: *[]i32) =
let xs' = zip xs xs
let xs'[0] = (0,0)
in xs'
```
athas updated
3 years ago
-
```
{"app_name":"Runner","timestamp":"2019-01-10 11:16:13.93 -0800","app_version":"2.1.0","slice_uuid":"f743bc57-ec50-38dc-bbc2-55b24186f0b4","adam_id":1440932231,"build_version":"33","bundleID":"com…
-
Attempting to compile
```
type~ csc_mat =
{ col_offsets: []i64
, row_idxs: []i32
}
let low (d: csc_mat) (j: i64): i64 = 0
entry foo (m: csc_mat): csc_mat =
let n = length m.col_off…
-
When memory coalescing has been implemented, it will affect programs like the following `nw-cosmin.fut`:
nw-cosmin.fut
```futhark
-- Code and comments based on
-- https://github.com/kkusha…
-
If you haven’t already, check out our [contributing guidelines](https://github.com/Expensify/ReactNativeChat/blob/master/CONTRIBUTING.md) for onboarding and email contributors@expensify.com to request…
-
While testing my app in dev mode, it is working fine. But in release mode it crashes after I touch some buttons after performing some operations in the app(I don't know what exactly is the cause). Thi…
-
Compiling generated C code yields a warning about a redeclaration of _GNU_SOURCE, which is present in the generated header. I believe this can be solved simply by adding an ifndef around the generated…
-
For deep neural networks in particular, and optimization of complex functions in general, it would be very valuable to be able to automatically derive gradients for continuous functions. Doing this (o…