Skip to content

Commit eaf840f

Browse files
authored
Merge pull request #24 from gomlx/buffer-bitcast
Added `Buffer.Bitcast`
2 parents beac629 + 683d09b commit eaf840f

25 files changed

Lines changed: 607 additions & 102 deletions

File tree

cmd/pjrt_installer/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var (
2525

2626
flagPlugin, flagPath *string
2727
flagVersion = flag.String("version", "latest",
28-
"For PJRT for CPUs, this is the https://github.com/gomlx/pjrt-cpu-binaries release version (e.g.: v0.83.1) "+
28+
"For PJRT for CPUs, this is the https://github.com/gomlx/pjrt-cpu-binaries release version (e.g.: v0.98.0) "+
2929
"from where to download the plugin. "+
3030
"For the CUDA PJRT this is based on the Jax version in https://pypi.org/project/jax/ (e.g.: 0.7.2), "+
3131
"which is where it downloads the plugin and Nvidia libraries from. "+

docs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
- Installation:
2626
- prevent race condition of concurrent (auto-)installations (using flock, so it works cross-processes).
2727
- Bumped XLA's `pjrt_c_api.h` to version 0.98
28+
- Added `Buffer.Bitcast`.
2829

2930
# v0.1.4
3031

internal/protos/autotune_results/autotune_results.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protos/autotuning.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ message AutotuneResult {
6464

6565
message GemmKey {
6666
int64 algorithm = 1;
67+
int64 autotune_workspace_size = 2;
6768
}
6869

6970
// Legacy and unused in new data; superseded by AlgorithmProto.

internal/protos/autotuning/autotuning.pb.go

Lines changed: 90 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protos/compile_options/compile_options.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protos/cuda_compute_capability/cuda_compute_capability.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protos/device_description/device_description.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protos/dnn/dnn.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/protos/hlo/hlo.pb.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)