Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 767ade4

Browse files
Missing override
1 parent 2ab48f8 commit 767ade4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/tc/core/cpu/cpu_tc_executor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class CpuTcExecutor : public ::tc::TcExecutor {
7474
Duration run(
7575
const std::vector<const DLTensor*>& inputs,
7676
const std::vector<DLTensor*>& outputs,
77-
bool profile = false) const;
77+
bool profile = false) const override;
7878

7979
// This is the "low-latency" mode in which we just propagate raw pointers to
8080
// data in GPU address space.
@@ -83,7 +83,7 @@ class CpuTcExecutor : public ::tc::TcExecutor {
8383
// doesn't then segfault will likely occur.
8484
void uncheckedRun(
8585
const std::vector<const void*>& inputs,
86-
const std::vector<void*>& outputs) const;
86+
const std::vector<void*>& outputs) const override;
8787

8888
bool hasRuntimeCompiledFunction() override {
8989
return rtcFunction.get() != nullptr;

0 commit comments

Comments
 (0)