Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Tue, Jan 28, 20:04

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