Skip to content
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

Add metal_profiler to profile gpu on macos #63

Merged

Conversation

junjihashimoto
Copy link
Collaborator

@junjihashimoto junjihashimoto commented Sep 27, 2024

This PR adds start/stopCapture functions to profile metal shader functions.

#61

To call metal-functions on C++, we need to use objective-c++ or metal-cpp.
It simply provides C APIs using Objective-C.

@junjihashimoto
Copy link
Collaborator Author

junjihashimoto commented Sep 28, 2024

When you call startCapture and endCapture, the file gpu.cpp.gputrace is output.
Opening the gputrace file will launch xcode-Instruments, then replay, which will show you the GPU Profiler results as below:
image

@@ -799,7 +803,11 @@ void runTest(int version, size_t M, size_t K, size_t N,
Tensor input = createTensor(ctx, Shape{M, K}, numtype, inputPtr.get());
Tensor weights = createTensor(ctx, Shape{N, K}, numtype, weightsPtr.get()); // column-major

#ifdef METAL_PROFILER
constexpr size_t nIter = 1;
Copy link
Collaborator Author

@junjihashimoto junjihashimoto Sep 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replaying gpu trace is slow.
Reduce the number of repetitions to reduce the load.

@junjihashimoto junjihashimoto force-pushed the feature/metal-profile branch 2 times, most recently from 5ef2f10 to 93d1cd0 Compare September 29, 2024 20:14
@austinvhuang austinvhuang merged commit efb297c into AnswerDotAI:main Oct 5, 2024
1 check passed
@junjihashimoto
Copy link
Collaborator Author

Thx!

@junjihashimoto junjihashimoto deleted the feature/metal-profile branch October 6, 2024 05:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants