-
Notifications
You must be signed in to change notification settings - Fork 879
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Integration of intel extension for pytorch #1312
Closed
jingxu10
wants to merge
5
commits into
pytorch:master
from
jingxu10:jingxu10/intel_extension_for_pytorch
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
5c0213e
[draft] integrate intel extension for pytorch to torchserve base_handler
jingxu10 8031300
removed runtime jit trace
jingxu10 856d105
revert inference and handler function back in base_handler.py
jingxu10 2057e63
format fine-tune
jingxu10 2a91c71
Merge branch 'master' into jingxu10/intel_extension_for_pytorch
jingxu10 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
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 |
---|---|---|
|
@@ -9,6 +9,13 @@ | |
import time | ||
import torch | ||
|
||
ipex_enabled = False | ||
try: | ||
import intel_extension_for_pytorch as ipex | ||
ipex_enabled = True | ||
except: | ||
pass | ||
|
||
from ..utils.util import list_classes_from_module, load_label_mapping | ||
|
||
logger = logging.getLogger(__name__) | ||
|
@@ -73,6 +80,9 @@ def initialize(self, context): | |
self.model = self._load_torchscript_model(model_pt_path) | ||
|
||
self.model.eval() | ||
if ipex_enabled: | ||
self.model = self.model.to(memory_format=torch.channels_last) | ||
self.model = ipex.optimize(self.model, dtype=torch.float32, level='O1') | ||
|
||
logger.debug('Model file %s loaded successfully', model_pt_path) | ||
|
||
|
@@ -141,7 +151,10 @@ def preprocess(self, data): | |
Returns: | ||
tensor: Returns the tensor data of the input | ||
""" | ||
return torch.as_tensor(data, device=self.device) | ||
t = torch.as_tensor(data, device=self.device) | ||
if ipex_enabled: | ||
t = t.to(memory_format=torch.channels_last) | ||
return t | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @HamidShojanazeri currently this only apply to vision models, because in PyTorch only 4D tensor can be changed to NHWC. |
||
|
||
def inference(self, data, *args, **kwargs): | ||
""" | ||
|
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.
It's better to config these parameters in config.properties, instead of hard coded.
Are ninstances and ncore_per_instance model level configuration?
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.
Hi @lxning , Could you guide us where to add the code to read new config knobs from the config.properties file?
Yes, both of them are model-level configuration. They only take effects on the task launched by
ts/model_service_worker.py
script.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.
@lxning how about importing functionalities of "intel_extension_for_pytorch.cpu.launch" into based handler as utilities instead of calling the script here?
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.
@HamidShojanazeri this launch script is actually a wrapper of numactl command. handler script is supposed to be launched by it to make CPU binding take effect.