Skip to content

Commit 2a72f53

Browse files
committed
Revert changes on e2e-test
1 parent 965f78c commit 2a72f53

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

sycl/test-e2e/Graph/RecordReplay/ext_oneapi_enqueue_functions.cpp

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
#include <sycl/properties/all_properties.hpp>
1111

1212
int main() {
13-
14-
using namespace std::chrono;
15-
1613
queue InOrderQueue{property::queue::in_order{}};
1714

1815
using T = int;
@@ -44,17 +41,7 @@ int main() {
4441

4542
auto GraphExec = Graph.finalize();
4643

47-
// Start time
48-
auto start = high_resolution_clock::now();
4944
exp_ext::execute_graph(InOrderQueue, GraphExec);
50-
51-
auto end = high_resolution_clock::now();
52-
53-
// Calculatce duration
54-
auto duration = duration_cast<nanoseconds>(end - start);
55-
56-
std::cout << "Time taken by function: " << duration.count() << " ns\n";
57-
5845
InOrderQueue.wait_and_throw();
5946

6047
free(PtrA, InOrderQueue);

0 commit comments

Comments
 (0)