-
Notifications
You must be signed in to change notification settings - Fork 64
script to continuously evaluate elser #2670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
davidkyle
wants to merge
1
commit into
elastic:main
Choose a base branch
from
davidkyle:run-elser
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+181
−0
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
import argparse | ||
import json | ||
import os | ||
import platform | ||
import random | ||
import stat | ||
import subprocess | ||
import time | ||
|
||
|
||
# | ||
# python3 signal9.py '/Users/davidkyle/Development/NLP Models/elser_2/elser_model_2.pt' --num_allocations=4 | ||
# | ||
|
||
def parse_arguments(): | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument('model', help='A TorchScript model with .pt extension') | ||
# The pipes are created by the C++ app | ||
# The names must match those passed to app | ||
parser.add_argument('--output_file', default='out.json') | ||
parser.add_argument('--log_file', default='log.txt') | ||
parser.add_argument('--num_threads_per_allocation', type=int, help='The number of inference threads used by LibTorch. Defaults to 1.') | ||
parser.add_argument('--num_allocations', type=int, help='The number of allocations for parallel forwarding. Defaults to 1') | ||
|
||
return parser.parse_args() | ||
|
||
|
||
def path_to_app(): | ||
|
||
os_platform = platform.system() | ||
if os_platform == 'Darwin': | ||
if platform.machine() == 'arm64': | ||
sub_path = 'darwin-aarch64/controller.app/Contents/MacOS/' | ||
else: | ||
sub_path = 'darwin-x86_64/controller.app/Contents/MacOS/' | ||
elif os_platform == 'Linux': | ||
if platform.machine() == 'aarch64': | ||
sub_path = 'linux-aarch64/bin/' | ||
else: | ||
sub_path = 'linux-x86_64/bin/' | ||
elif os_platform == 'Windows': | ||
sub_path = 'windows-x86_64/bin/' | ||
else: | ||
raise RuntimeError('Unknown platform') | ||
|
||
return "../../build/distribution/platform/" + sub_path + "pytorch_inference" | ||
|
||
def lauch_pytorch_app(args, input_pipe, restore_file): | ||
|
||
command = [path_to_app(), | ||
'--restore=' + restore_file, | ||
'--input=' + input_pipe, '--inputIsPipe', | ||
'--output=' + args.output_file, | ||
# '--logPipe=' + args.log_file, | ||
'--validElasticLicenseKeyConfirmed=true', | ||
] | ||
|
||
if args.num_threads_per_allocation: | ||
command.append('--numThreadsPerAllocation=' + str(args.num_threads_per_allocation)) | ||
|
||
if args.num_allocations: | ||
command.append('--numAllocations=' + str(args.num_allocations)) | ||
|
||
# For the memory benchmark always use the immediate executor | ||
# if args.memory_benchmark: | ||
# command.append('--useImmediateExecutor') | ||
subprocess.Popen(command) | ||
|
||
|
||
def stream_file(source, destination) : | ||
while True: | ||
piece = source.read(8192) | ||
if not piece: | ||
break | ||
|
||
destination.write(piece) | ||
|
||
def wait_for_pipe(file_name, num_retries=5) : | ||
''' | ||
the pipe must exist else it will be created as an | ||
ordinary file when opened for write | ||
''' | ||
while num_retries > 0: | ||
try: | ||
if stat.S_ISFIFO(os.stat(file_name).st_mode): | ||
break | ||
except Exception: | ||
pass | ||
|
||
|
||
num_retries = num_retries -1 | ||
time.sleep(5) | ||
|
||
return stat.S_ISFIFO(os.stat(file_name).st_mode) | ||
|
||
def write_mem_usage_request(request_num, destination): | ||
json.dump({"request_id": "mem_" + str(request_num), "control": 2}, destination) | ||
|
||
def write_random_request(request_id, destination): | ||
json.dump(build_random_inference_request(request_id=request_id), destination) | ||
|
||
def build_random_inference_request(request_id): | ||
num_tokens = 510 | ||
tokens = [101] # CLS | ||
for _ in range(num_tokens): | ||
tokens.append(random.randrange(110, 28000)) | ||
tokens.append(102) # SEP | ||
|
||
arg_1 = [1] * (num_tokens + 2) | ||
arg_2 = [0] * (num_tokens + 2) | ||
arg_3 = [i for i in range(num_tokens + 2)] | ||
|
||
request = { | ||
"request_id": request_id, | ||
"tokens": [tokens], | ||
"arg_1": [arg_1], | ||
"arg_2": [arg_2], | ||
"arg_3": [arg_3], | ||
} | ||
|
||
return request | ||
|
||
|
||
|
||
|
||
|
||
def restore_model(model, restore_file_name): | ||
# create the restore file | ||
with open(restore_file_name, 'wb') as restore_file: | ||
file_stats = os.stat(model) | ||
file_size = file_stats.st_size | ||
|
||
# 4 byte unsigned int | ||
b = (file_size).to_bytes(4, 'big') | ||
restore_file.write(b) | ||
|
||
print("streaming model of size", file_size, flush=True) | ||
|
||
with open(model, 'rb') as source_file: | ||
stream_file(source_file, restore_file) | ||
|
||
|
||
def main(): | ||
|
||
args = parse_arguments() | ||
|
||
input_pipe_name = "model_input" | ||
restore_file_name = "model_restore_temp" | ||
|
||
# stream the torchscript model | ||
restore_model(args.model, restore_file_name=restore_file_name) | ||
|
||
lauch_pytorch_app(args, input_pipe=input_pipe_name, restore_file=restore_file_name) | ||
|
||
|
||
if not wait_for_pipe(input_pipe_name): | ||
print("Error: input pipe [{}] has not been created".format(input_pipe_name)) | ||
return | ||
|
||
input_pipe = open(input_pipe_name, 'w') | ||
|
||
print("writing requests") | ||
|
||
i = 0 | ||
while True: | ||
if i % 100 == 0: | ||
print("mem") | ||
write_mem_usage_request(str(i), input_pipe) | ||
else: | ||
write_random_request(str(i), input_pipe) | ||
|
||
i = i + 1 | ||
|
||
|
||
input_pipe.close() | ||
|
||
|
||
|
||
|
||
if __name__ == "__main__": | ||
main() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably include setting the cache size here. Does it default to 0 if
--cacheMemorylimitBytes
isn't passed?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the default cache value is
0
: