[LICENSING] updated license to incorporate credit for wgtcc

This commit is contained in:
Philippe Tillet
2019-08-23 17:56:30 -07:00
parent a110a7e8cf
commit 606e799948
3 changed files with 5 additions and 21 deletions

View File

@@ -20,3 +20,7 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// The compiler front-end is based on a modified version of WGTCC
// https://github.com/wgtdkp/wgtcc
// Copyright (c) 2016 wgtdkp

View File

@@ -116,13 +116,10 @@ public:
std::string make_tensorflow_src(const std::vector<size_t> &outputs, const std::string &macro);
private:
// execution context
ir::context ctx_;
// program representations
std::string src_;
std::map<cache_key_t, caller> cache_;
// options
options_space_t opt_space_;
std::map<cache_key_t, caller> cache_;
};
}

View File

@@ -1,17 +0,0 @@
#ifndef TRITON_INCLUDE_RUNTIME_LAUNCH_INFO_H
#define TRITON_INCLUDE_RUNTIME_LAUNCH_INFO_H
#include <map>
namespace triton{
namespace runtime{
struct launch_information{
unsigned num_threads;
std::map<std::string, unsigned> globals;
};
}
}
#endif