forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
41 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "load_states.h" | ||
|
||
#include <fstream> | ||
#include <iostream> | ||
#include <string> | ||
|
||
namespace tvm { | ||
namespace autokcache { | ||
|
||
void load_file() { | ||
std::cout << "I have to change it..." << std::endl; | ||
//std::cout << "here..." << std::endl; | ||
//std::string file = "/home/thais/Dev/tvm-scripts/operator-dataset-30/matmul_add/1024-1024-1024-0.log"; | ||
} | ||
|
||
} // namespace autokcache | ||
} // namespace tvm |
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,20 @@ | ||
#ifndef LOAD_STATES_H | ||
#define LOAD_STATES_H | ||
|
||
#include <tvm/arith/analyzer.h> | ||
#include <tvm/auto_scheduler/auto_schedule.h> | ||
#include <tvm/auto_scheduler/measure.h> | ||
#include <tvm/auto_scheduler/search_policy.h> | ||
#include <tvm/runtime/registry.h> | ||
#include <tvm/tir/builtin.h> | ||
#include <tvm/tir/expr_functor.h> | ||
|
||
namespace tvm { | ||
namespace autokcache { | ||
|
||
void load_file(); | ||
|
||
} // namespace autokcache | ||
} // namespace tvm | ||
|
||
#endif |