Python Cython.Distutils.build_ext 模块,build_extensions() 实例源码

我们从Python开源项目中,提取了以下50个代码示例,用于说明如何使用Cython.Distutils.build_ext.build_extensions()

项目:mpiFFT4py    作者:spectralDNS    | 项目源码 | 文件源码
def build_extensions(self):
        extra_compile_args = ['-w', '-Ofast']
        cmd = "echo | %s -E - %s &>/dev/null" % (
            self.compiler.compiler[0], " ".join(extra_compile_args))
        try:
            subprocess.check_call(cmd, shell=True)
        except:
            extra_compile_args = ['-w', '-O3']
        for e in self.extensions:
            e.extra_compile_args = extra_compile_args
        build_ext.build_extensions(self)
项目:HandDetection    作者:YunqiuXu    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:adversarial-frcnn    作者:xiaolonw    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:faster-rcnn-resnet    作者:Eniac-Xie    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:py-faster-rcnn-tk1    作者:joeking11829    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:capnpy    作者:antocuni    | 项目源码 | 文件源码
def build_extensions(self):
        self.extensions = my_cythonize(self.extensions)
        return build_ext.build_extensions(self)

# end of the custom commands section
###############################################################################
项目:canshi    作者:hungsing92    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:TensorFlow-ADGM    作者:dancsalo    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:py-faster-rcnn-resnet-imagenet    作者:tianzhi0549    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:focal-loss    作者:unsky    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:focal-loss    作者:unsky    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:focal-loss    作者:unsky    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:faster_rcnn_pytorch    作者:longcw    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:odnl    作者:lilhope    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:RON    作者:taokong    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:face-py-faster-rcnn    作者:playerkk    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:MV3D-Pytorch    作者:dongwoohhh    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Automatic_Group_Photography_Enhancement    作者:Yuliang-Zou    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:MSDN    作者:yikang-li    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:deep-fashion    作者:zuowang    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Deformable-ConvNets    作者:msracver    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Deformable-ConvNets    作者:msracver    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Deformable-ConvNets    作者:msracver    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:RPN    作者:hfut721    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Deep-Feature-Flow    作者:msracver    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Deep-Feature-Flow    作者:msracver    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Deep-Feature-Flow    作者:msracver    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:yolo2-pytorch    作者:longcw    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Faster-RCNN_TF    作者:smallcorgi    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Master-R-CNN    作者:Mark110    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:FPN    作者:xmyqsh    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:TFFRCNN    作者:InterVideo    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:tf-faster-rcnn    作者:endernewton    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:TattDL    作者:z-harry-sun    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:faster_rcnn_logo    作者:romyny    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:TF_Deformable_Net    作者:Zardinality    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:Faster_RCNN_Training_Toolkit    作者:VerseChow    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:KITTI-detection-OHEM    作者:manutdzou    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:FastRcnnDetect    作者:karthkk    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:chainercv    作者:chainer    | 项目源码 | 文件源码
def build_extensions(self):
        self.check_cython_extensions(self.extensions)

        # Include NumPy
        numpy_incl = pkg_resources.resource_filename('numpy', 'core/include')
        for ext in self.extensions:
            if (hasattr(ext, 'include_dirs') and
                    numpy_incl not in ext.include_dirs):
                ext.include_dirs.append(numpy_incl)
        _build_ext.build_extensions(self)
项目:tf-Faster-RCNN    作者:kevinjliang    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:ohem    作者:abhi2610    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:pyspace    作者:adityapb    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:nexar-2    作者:lbin    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:pytorch_RFCN    作者:PureDiors    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:py-faster-rcnn-dockerface    作者:natanielruiz    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:faster-rcnn.pytorch    作者:jwyang    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:FRCNN_git    作者:runa91    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:jenova    作者:dungba88    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)
项目:FastRCNN-TF-Django    作者:DamonLiuNJU    | 项目源码 | 文件源码
def build_extensions(self):
        customize_compiler_for_nvcc(self.compiler)
        build_ext.build_extensions(self)