Skip to content
Snippets Groups Projects
Commit 470f716f authored by Akash Kothari's avatar Akash Kothari :speech_balloon:
Browse files

Remove benchmarks from hpvm/test/VISC to hpvm/test

parent a21fec8a
No related branches found
No related tags found
No related merge requests found
Showing
with 0 additions and 175 deletions
# Partially stolen from https://bitbucket.org/mblum/libgp/src/2537ea7329ef/.ycm_extra_conf.py
import os
import ycm_core
# These are the compilation flags that will be used in case there's no
# compilation database set (by default, one is not set).
# CHANGE THIS LIST OF FLAGS. YES, THIS IS THE DROID YOU HAVE BEEN LOOKING FOR.
flags = [
'-D_DEBUG',
'-D_GNU_SOURCE',
'-D__STDC_CONSTANT_MACROS',
'-D__STDC_FORMAT_MACROS',
'-D__STDC_LIMIT_MACROS',
'-g' '-fvisibility-inlines-hidden',
'-fno-exceptions',
'-fno-rtti',
'-fPIC',
'-Woverloaded-virtual',
'-Wcast-qual',
'-pedantic',
'-Wno-long-long',
'-Wall',
'-W',
'-Wno-unused-parameter',
'-Wwrite-strings',
'-Wcovered-switch-default',
'-Wno-uninitialized',
'-Wno-missing-field-initializers',
# THIS IS IMPORTANT! Without a "-std=<something>" flag, clang won't know which
# language to use when compiling headers. So it will guess. Badly. So C++
# headers will be compiled as C headers. You don't want that so ALWAYS specify
# a "-std=<something>".
# For a C project, you would set this to something like 'c99' instead of
# 'c++11'.
'-std=c++11',
# ...and the same thing goes for the magic -x option which specifies the
# language that the files to be compiled are written in. This is mostly
# relevant for c++ headers.
# For a C project, you would set this to 'c' instead of 'c++'.
'-x', 'c++',
# This path will only work on OS X, but extra paths that don't exist are not
# harmful
'-isystem', '/home/psrivas2/current-test/parboil/common/include',
'-I', '/home/psrivas2/current-test/parboil/common/include',
'-I', '/home/psrivas2/current-src/include'
'-isystem', '/System/Library/Frameworks/Python.framework/Headers',
'-isystem', '/usr/local/include',
'-isystem', '/usr/local/include/eigen3',
'-I', 'include',
'-I.',
'-I./include',
'-isystem', '/opt/intel/opencl-sdk/include'
'-isystem', '/usr/local/cuda/include',
'-isystem', '/home/psrivas2/current-src/include',
]
# Set this to the absolute path to the folder (NOT the file!) containing the
# compile_commands.json file to use that instead of 'flags'. See here for
# more details: http://clang.llvm.org/docs/JSONCompilationDatabase.html
#
# Most projects will NOT need to set this to anything; you can just change the
# 'flags' list of compilation flags. Notice that YCM itself uses that approach.
compilation_database_folder = ''
if compilation_database_folder:
database = ycm_core.CompilationDatabase( compilation_database_folder )
else:
database = None
def DirectoryOfThisScript():
return os.path.dirname( os.path.abspath( __file__ ) )
def MakeRelativePathsInFlagsAbsolute( flags, working_directory ):
if not working_directory:
return list( flags )
new_flags = []
make_next_absolute = False
path_flags = [ '-isystem', '-I', '-iquote', '--sysroot=' ]
for flag in flags:
new_flag = flag
if make_next_absolute:
make_next_absolute = False
if not flag.startswith( '/' ):
new_flag = os.path.join( working_directory, flag )
for path_flag in path_flags:
if flag == path_flag:
make_next_absolute = True
break
if flag.startswith( path_flag ):
path = flag[ len( path_flag ): ]
new_flag = path_flag + os.path.join( working_directory, path )
break
if new_flag:
new_flags.append( new_flag )
return new_flags
def FlagsForFile( filename ):
if database:
# Bear in mind that compilation_info.compiler_flags_ does NOT return a
# python list, but a "list-like" StringVec object
compilation_info = database.GetCompilationInfoForFile( filename )
final_flags = MakeRelativePathsInFlagsAbsolute(
compilation_info.compiler_flags_,
compilation_info.compiler_working_dir_ )
else:
relative_to = DirectoryOfThisScript()
final_flags = MakeRelativePathsInFlagsAbsolute( flags, relative_to )
return {
'flags': final_flags,
'do_cache': True
}
CUDA_PATH=/usr/local/cuda
CUDA_LIB_PATH=/usr/local/cuda/lib64
#OPENCL_PATH=/opt/intelFPGA_pro/18.0/hld/host/linux64
#OPENCL_LIB_PATH=$(OPENCL_PATH)/lib
OPENCL_PATH=/opt/intel/opencl-sdk/
OPENCL_LIB_PATH=$(OPENCL_PATH)/lib64
#LLVM_SRC_ROOT=/home/kotsifa2/HPVM/Gitlab/hpvm/llvm
# NOTE: You may need to configure this based on your root path.
VISC_SRC_ROOT=$(LLVM_SRC_ROOT)
VISC_BUILD_DIR =$(VISC_SRC_ROOT)/../build
CC = $(VISC_BUILD_DIR)/bin/clang
PLATFORM_CFLAGS = -I$(LLVM_SRC_ROOT)/include -I$(VISC_BUILD_DIR)/include
CXX = $(VISC_BUILD_DIR)/bin/clang++
PLATFORM_CXXFLAGS = -I$(LLVM_SRC_ROOT)/include -I$(VISC_BUILD_DIR)/include
LINKER = $(VISC_BUILD_DIR)/bin/clang++
PLATFORM_LDFLAGS = -lm -lpthread -lrt -lOpenCL -L$(OPENCL_LIB_PATH)
LLVM_LIB_PATH = $(VISC_BUILD_DIR)/lib
LLVM_BIN_PATH = $(VISC_BUILD_DIR)/bin
OPT = $(LLVM_BIN_PATH)/opt
LLVM_LINK = $(LLVM_BIN_PATH)/llvm-link
LLVM_AS = $(LLVM_BIN_PATH)/llvm-as
LIT = $(LLVM_BIN_PATH)/llvm-lit
CUDA_PATH=/usr/local/cuda
CUDA_LIB_PATH=/usr/local/cuda/lib64
#OPENCL_PATH=/opt/intelFPGA_pro/18.0/hld/host/linux64
#OPENCL_LIB_PATH=$(OPENCL_PATH)/lib
OPENCL_PATH=/opt/intel/opencl-sdk/
OPENCL_LIB_PATH=$(OPENCL_PATH)/lib64
#LLVM_SRC_ROOT=/home/kotsifa2/HPVM/Gitlab/hpvm/llvm
# NOTE: You may need to configure this based on your root path.
VISC_SRC_ROOT=$(LLVM_SRC_ROOT)
VISC_BUILD_DIR =$(VISC_SRC_ROOT)/../build
CC = $(VISC_BUILD_DIR)/bin/clang
PLATFORM_CFLAGS = -I$(LLVM_SRC_ROOT)/include -I$(VISC_BUILD_DIR)/include
CXX = $(VISC_BUILD_DIR)/bin/clang++
PLATFORM_CXXFLAGS = -I$(LLVM_SRC_ROOT)/include -I$(VISC_BUILD_DIR)/include
LINKER = $(VISC_BUILD_DIR)/bin/clang++
PLATFORM_LDFLAGS = -lm -lpthread -lrt -lOpenCL -L$(OPENCL_LIB_PATH)
LLVM_LIB_PATH = $(VISC_BUILD_DIR)/lib
LLVM_BIN_PATH = $(VISC_BUILD_DIR)/bin
OPT = $(LLVM_BIN_PATH)/opt
LLVM_LINK = $(LLVM_BIN_PATH)/llvm-link
LLVM_AS = $(LLVM_BIN_PATH)/llvm-as
LIT = $(LLVM_BIN_PATH)/llvm-lit
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment