Skip to content

Commit

Permalink
Update tf-proto.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Mar 21, 2024
1 parent fa7f8e5 commit 7b46890
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions source/tf-proto.js
Original file line number Diff line number Diff line change
Expand Up @@ -6418,6 +6418,12 @@ tensorflow.GPUOptions.Experimental = class Experimental {
case 16:
message.gpu_system_memory_size_in_mb = reader.int32();
break;
case 17:
message.populate_pjrt_gpu_client_creation_info = reader.bool();
break;
case 18:
message.node_id = reader.int32();
break;
default:
reader.skipType(tag & 7);
break;
Expand Down Expand Up @@ -6477,6 +6483,12 @@ tensorflow.GPUOptions.Experimental = class Experimental {
case "gpu_system_memory_size_in_mb":
message.gpu_system_memory_size_in_mb = reader.int32();
break;
case "populate_pjrt_gpu_client_creation_info":
message.populate_pjrt_gpu_client_creation_info = reader.bool();
break;
case "node_id":
message.node_id = reader.int32();
break;
default:
reader.field(tag, message);
break;
Expand All @@ -6500,6 +6512,8 @@ tensorflow.GPUOptions.Experimental.prototype.disallow_retry_on_allocation_failur
tensorflow.GPUOptions.Experimental.prototype.gpu_host_mem_limit_in_mb = 0;
tensorflow.GPUOptions.Experimental.prototype.gpu_host_mem_disallow_growth = false;
tensorflow.GPUOptions.Experimental.prototype.gpu_system_memory_size_in_mb = 0;
tensorflow.GPUOptions.Experimental.prototype.populate_pjrt_gpu_client_creation_info = false;
tensorflow.GPUOptions.Experimental.prototype.node_id = 0;

tensorflow.GPUOptions.Experimental.VirtualDevices = class VirtualDevices {

Expand Down

0 comments on commit 7b46890

Please sign in to comment.