{-# LANGUAGE ForeignFunctionInterface #-} module Torch.FFI.THC.Double.TensorMathCompare where import Foreign import Foreign.C.Types import Data.Word import Data.Int import Torch.Types.TH import Torch.Types.THC -- | c_ltValue : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_ltValue" c_ltValue :: Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_gtValue : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_gtValue" c_gtValue :: Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_leValue : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_leValue" c_leValue :: Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_geValue : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_geValue" c_geValue :: Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_eqValue : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_eqValue" c_eqValue :: Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_neValue : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_neValue" c_neValue :: Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_ltValueT : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_ltValueT" c_ltValueT :: Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_gtValueT : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_gtValueT" c_gtValueT :: Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_leValueT : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_leValueT" c_leValueT :: Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_geValueT : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_geValueT" c_geValueT :: Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_eqValueT : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_eqValueT" c_eqValueT :: Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | c_neValueT : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h THCudaDoubleTensor_neValueT" c_neValueT :: Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO () -- | p_ltValue : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_ltValue" p_ltValue :: FunPtr (Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_gtValue : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_gtValue" p_gtValue :: FunPtr (Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_leValue : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_leValue" p_leValue :: FunPtr (Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_geValue : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_geValue" p_geValue :: FunPtr (Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_eqValue : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_eqValue" p_eqValue :: FunPtr (Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_neValue : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_neValue" p_neValue :: FunPtr (Ptr C'THCState -> Ptr C'THCudaByteTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_ltValueT : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_ltValueT" p_ltValueT :: FunPtr (Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_gtValueT : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_gtValueT" p_gtValueT :: FunPtr (Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_leValueT : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_leValueT" p_leValueT :: FunPtr (Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_geValueT : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_geValueT" p_geValueT :: FunPtr (Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_eqValueT : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_eqValueT" p_eqValueT :: FunPtr (Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ()) -- | p_neValueT : Pointer to function : state self_ src value -> void foreign import ccall "THCTensorMathCompare.h &THCudaDoubleTensor_neValueT" p_neValueT :: FunPtr (Ptr C'THCState -> Ptr C'THCudaDoubleTensor -> Ptr C'THCudaDoubleTensor -> CDouble -> IO ())