-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Added winml-compatible ep validation tool for accuracy and perf measurements #26953
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
base: main
Are you sure you want to change the base?
Conversation
…urements of ONNX models
|
@Sumit2318 please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”),
|
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.
lintrunner found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
| @@ -0,0 +1,398 @@ | |||
| // EpValidationTool.cpp : This file contains the 'main' function. Program execution begins and ends there. | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,424 @@ | |||
| #include "accuracy_validation.h" | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,18 @@ | |||
| #pragma once | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,571 @@ | |||
| #pragma once | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,122 @@ | |||
| #include "dataset_reader.h" | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,57 @@ | |||
| #include <filesystem> | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,81 @@ | |||
| #include "profiling_utils.h" | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,43 @@ | |||
| #pragma once | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,9 @@ | |||
| #include <codecvt> | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
| @@ -0,0 +1,433 @@ | |||
| #include "tensor_utils.h" | |||
Check warning
Code scanning / lintrunner
CLANGFORMAT/format Warning test
Run lintrunner -a to apply this patch.
…urements of ONNX models
Description
Motivation and Context