Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Sat, May 10, 15:15

Makefile

CC = icc
CFLAGS = -O3 -march=native
CFLAGS += -Wall
CFLAGS += -qopenmp
all: stream
stream: stream.c
$(CC) $(CFLAGS) -qopt-streaming-stores=always stream.c -o stream
clean:
rm -f stream *.o

Event Timeline