Skip to content

Tags: theunafraid/tfjs-core

Tags

v0.15.3

Toggle v0.15.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.15.3 (tensorflow#1572)

Bump version to 0.15.3

v1.0.0-alpha3

Toggle v1.0.0-alpha3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update core to 1.0.0-alpha3 (tensorflow#1565)

INTERNAL

v0.15.2

Toggle v0.15.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
0.15.x: Update to 0.15.2. (tensorflow#1567)

INTERNAL

v1.0.0-alpha2

Toggle v1.0.0-alpha2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update core at master to 1.0.0-alpha2 (tensorflow#1552)

DEV

v0.15.1

Toggle v0.15.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update 0.15.x to 0.15.1. (tensorflow#1551)

v1.0.0-alpha1

Toggle v1.0.0-alpha1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Always test for a fence with gl2.clientWaitSync(sync, 0, 0) (tensorfl…

…ow#1529)

Fixes tensorflow/tfjs#1145

The smallest repro is calling .data() 3 times without waiting:
```ts
tf.ENV.set('WEBGL_CPU_FORWARD', false)
tf.ENV.set('WEBGL_SIZE_UPLOAD_UNIFORM', 0);
tf.square(3).data();
tf.square(3).data();
tf.square(3).data();
```

There are 3 fences that are in parallel. And on the next tick the binary search tests only the middle fence and sees that it is done, and assumes the first fence is done too. But since we never explicitly tested fence[0].isDone(), Chrome gives a warning.

The warnings started showing up more often when Layers started doing parallel reads of the scalar loss values: tensorflow/tfjs-layers#398

I changed the binary search to linear search so we also test all fences up to the one that is not done.

v0.15.0

Toggle v0.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update to 0.15.0 and update the publish npm script to allow the relea…

…se branch. (tensorflow#1514)

v0.14.5

Toggle v0.14.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix derivative of PRELU when alpha gets broadcasted and bump version …

…to 0.14.5 (tensorflow#1487)

BUG
Fix derivative of PRELU when alpha gets broadcasted and update patch version

h/t to @caisq for finding the bug.

v0.14.4

Toggle v0.14.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.14.4 (tensorflow#1478)

INTERNAL

v0.14.3

Toggle v0.14.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version: 0.14.2 --> 0.14.3 (tensorflow#1467)