weld 0.4.0

Weld is a language and runtime for improving the performance of data-intensive applications.
1
2
3
4
5
6
7
8
9
10
11
12
// Simple test program that prints the results of the LLVM extension API.

#include <iostream>
#include "llvmext.h"

using namespace std;

int main() {
  cout << "Process Triple: " << LLVMExtGetProcessTriple() << endl;
  cout << "Host CPU Name:  " << LLVMExtGetHostCPUName() << endl;
  cout << "Host Features:  " << LLVMExtGetHostCPUFeatures() << endl;
}