Skip to content
View BKitor's full-sized avatar
Block or Report

Block or report BKitor

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Hopefully the last time I'll have to... Hopefully the last time I'll have to rewrite this boilerplate...
    1
    CC=/usr/local/bin/mpicc
    2
    CFLAGS=-g -Wall -I.
    3
    OBJ=main.o
    4
    
                  
    5
    %.o: %.c $(DEPS)
  2. Files playing with different ucx_ato... Files playing with different ucx_atomic endpoints. MPI is used for wireup.
    1
    ld_ucp_flags = -lucp -lucs -I$(BK_UCX_DIR)/include -L$(BK_UCX_DIR)/lib
    2
    
                  
    3
    ucp_hello_world:
    4
    	gcc -o ucp_hello_world ucp_hello_world.c $(ld_ucp_flags)
    5
    
                  
  3. Boilerplate for kernel module Boilerplate for kernel module
    1
    
                  
    2
    MODULE := bk_tst_mod
    3
    
                  
    4
    SOURCE_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
    5