-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add align for WorkQueue * add spinlock * merge develop * merge * Add EventsWaiter * Revert "Add EventsWaiter" This reverts commit e206173. * update OS info * split host_event_recorder * split host_event_recorder * update * update * update * update * update * update * update Co-authored-by: liutiexing <liutiexing@google.com>
- Loading branch information
1 parent
14658d8
commit 851637f
Showing
11 changed files
with
462 additions
and
349 deletions.
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
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
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,70 @@ | ||
/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. | ||
licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. */ | ||
|
||
#pragma once | ||
|
||
#include <string> | ||
#include "paddle/fluid/platform/event.h" | ||
|
||
namespace paddle { | ||
namespace platform { | ||
|
||
// CPU event tracing. A trace marks something that happens but has no duration | ||
// associated with it. For example, thread starts working. | ||
// Chrome Trace Viewer Format: Instant Event | ||
struct RecordInstantEvent { | ||
explicit RecordInstantEvent(const char* name, | ||
const EventRole role = EventRole::kOrdinary); | ||
}; | ||
|
||
// CPU event tracing. A trace starts when an object of this clas is created and | ||
// stops when the object is destroyed. | ||
// Chrome Trace Viewer Format: Duration Event/Complte Event | ||
class RecordEvent { | ||
public: | ||
explicit RecordEvent(const std::string& name, | ||
const EventRole role = EventRole::kOrdinary); | ||
|
||
explicit RecordEvent(const char* name, | ||
const EventRole role = EventRole::kOrdinary); | ||
|
||
RecordEvent(const std::string& name, const EventRole role, | ||
const std::string& attr); | ||
|
||
// Stop event tracing explicitly before the object goes out of scope. | ||
// Sometimes it's inconvenient to use RAII | ||
void End(); | ||
|
||
~RecordEvent() { End(); } | ||
|
||
private: | ||
void OriginalConstruct(const std::string& name, const EventRole role, | ||
const std::string& attr); | ||
|
||
bool is_enabled_{false}; | ||
bool is_pushed_{false}; | ||
// Event name | ||
std::string* name_{nullptr}; | ||
const char* shallow_copy_name_{nullptr}; | ||
uint64_t start_ns_; | ||
// Need to distinguish name by op type, block_id, program_id and perhaps | ||
// different kernel invocations within an op. | ||
// std::string full_name_; | ||
EventRole role_{EventRole::kOrdinary}; | ||
std::string* attr_{nullptr}; | ||
bool finished_{false}; | ||
}; | ||
|
||
} // namespace platform | ||
} // namespace paddle |
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,33 @@ | ||
/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. | ||
licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. */ | ||
|
||
#include "paddle/fluid/platform/host_event_recorder.h" | ||
#include "paddle/fluid/platform/os_info.h" | ||
|
||
namespace paddle { | ||
namespace platform { | ||
|
||
ThreadEventRecorder::ThreadEventRecorder() { | ||
thread_id_ = ThreadIdRegistry::GetInstance().CurrentThreadId().MainTid(); | ||
HostEventRecorder::GetInstance().RegisterThreadRecorder(thread_id_, this); | ||
} | ||
|
||
HostEventSection HostEventRecorder::GatherEvents() { | ||
HostEventSection host_sec; | ||
host_sec.thr_sections.reserve(thread_recorders_.size()); | ||
for (auto &kv : thread_recorders_) { | ||
host_sec.thr_sections.emplace_back(std::move(kv.second->GatherEvents())); | ||
} | ||
return std::move(host_sec); | ||
} | ||
|
||
} // namespace platform | ||
} // namespace paddle |
Oops, something went wrong.