-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Adding GPU acceleration to encode_jpeg #8391
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
133d7c1
Adding GPU acceleration to encode_jpeg
deekay42 4cc30cb
fix test cases
deekay42 2db02f0
fix lints
deekay42 6acef83
fix lints2
deekay42 ae0450d
latest round of updates
deekay42 a799c53
fix lints
deekay42 c5810ff
Ignore mypy
NicolasHug ff40253
Add comment
NicolasHug 0972863
minor test refactor
NicolasHug 4ce658d
Merge branch 'main' of github.com:pytorch/vision into add_gpu_encode
NicolasHug 65372a3
Merge branch 'pytorch:main' into add_gpu_encode
deekay42 62e072a
Caching nvjpeg vars across calls
deekay42 f190d99
Update if nvjpeg not found
deekay42 b5eaa89
Merge branch 'main' of github.com:pytorch/vision into add_gpu_encode
NicolasHug 5051050
Revert "Ignore mypy"
NicolasHug 136f790
Add comment
NicolasHug 0a88d27
minor changes to address ahmad's comments
deekay42 df60183
Merge branch 'add_gpu_encode' of https://github.com/deekay42/vision i…
deekay42 f3c8a72
add dtor log messages
deekay42 117d1f1
Skip CUDA cleanup altogether
deekay42 21eca4c
Merge branch 'main' into add_gpu_encode
NicolasHug 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,67 @@ | ||
import os | ||
import platform | ||
import statistics | ||
|
||
import torch | ||
import torch.utils.benchmark as benchmark | ||
import torchvision | ||
|
||
|
||
def print_machine_specs(): | ||
print("Processor:", platform.processor()) | ||
print("Platform:", platform.platform()) | ||
print("Logical CPUs:", os.cpu_count()) | ||
print(f"\nCUDA device: {torch.cuda.get_device_name()}") | ||
print(f"Total Memory: {torch.cuda.get_device_properties(0).total_memory / 1e9:.2f} GB") | ||
|
||
|
||
def get_data(): | ||
transform = torchvision.transforms.Compose( | ||
[ | ||
torchvision.transforms.PILToTensor(), | ||
] | ||
) | ||
path = os.path.join(os.getcwd(), "data") | ||
testset = torchvision.datasets.Places365( | ||
root="./data", download=not os.path.exists(path), transform=transform, split="val" | ||
) | ||
testloader = torch.utils.data.DataLoader( | ||
testset, batch_size=1000, shuffle=False, num_workers=1, collate_fn=lambda batch: [r[0] for r in batch] | ||
) | ||
return next(iter(testloader)) | ||
|
||
|
||
def run_benchmark(batch): | ||
results = [] | ||
for device in ["cpu", "cuda"]: | ||
batch_device = [t.to(device=device) for t in batch] | ||
for size in [1, 100, 1000]: | ||
for num_threads in [1, 12, 24]: | ||
for stmt, strat in zip( | ||
[ | ||
"[torchvision.io.encode_jpeg(img) for img in batch_input]", | ||
"torchvision.io.encode_jpeg(batch_input)", | ||
], | ||
["unfused", "fused"], | ||
): | ||
batch_input = batch_device[:size] | ||
t = benchmark.Timer( | ||
stmt=stmt, | ||
setup="import torchvision", | ||
globals={"batch_input": batch_input}, | ||
label="Image Encoding", | ||
sub_label=f"{device.upper()} ({strat}): {stmt}", | ||
description=f"{size} images", | ||
num_threads=num_threads, | ||
) | ||
results.append(t.blocked_autorange()) | ||
compare = benchmark.Compare(results) | ||
compare.print() | ||
|
||
|
||
if __name__ == "__main__": | ||
print_machine_specs() | ||
batch = get_data() | ||
mean_h, mean_w = statistics.mean(t.shape[-2] for t in batch), statistics.mean(t.shape[-1] for t in batch) | ||
print(f"\nMean image size: {int(mean_h)}x{int(mean_w)}") | ||
run_benchmark(batch) |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "decode_jpeg_cuda.h" | ||
#include "encode_decode_jpegs_cuda.h" | ||
|
||
#include <ATen/ATen.h> | ||
|
||
|
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
Oops, something went wrong.
Oops, something went wrong.
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.
Add a comment here or somewhere for the user to say that it only supports contiguous tensors?
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.
Line 87 in encode_jpegs_cuda.cpp should takes care of handling non-contiguous images.