Skip to content

Commit 67c1908

Browse files
committed
Merge branch 'main' of https://github.com/mseminatore/ann
2 parents 68423ee + 7edb69f commit 67c1908

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ fashion_mnist.pikchr
2222
fashion_mnist.svg
2323
fashion_mnist.onnx
2424
fashion_mnist_learning_curve.csv
25+
mnist_hypertune
2526

2627
# Object files
2728
*.o

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ LFLAGS += -L/opt/OpenBLAS/lib/ -lopenblas
3131
# -DMKL_ILP64 -m64 -I"${MKLROOT}/include"
3232
# ${MKLROOT}/lib/libmkl_intel_ilp64.a ${MKLROOT}/lib/libmkl_tbb_thread.a ${MKLROOT}/lib/libmkl_core.a -L${TBBROOT}/lib -ltbb -lc++ -lpthread -lm -ldl
3333

34-
all: $(LIBANN) mnist logic digit5x7 save_test save_test_binary blas_perf test_tensor test_network test_activations test_loss_functions test_save_load test_optimizers test_forward_pass test_training_convergence test_onnx_export test_hypertune test_json
34+
all: $(LIBANN) mnist mnist_hypertune logic digit5x7 save_test save_test_binary blas_perf test_tensor test_network test_activations test_loss_functions test_save_load test_optimizers test_forward_pass test_training_convergence test_onnx_export test_hypertune test_json
3535

3636
# build the static library
3737
$(LIBANN): $(LIB_OBJS)
@@ -40,6 +40,9 @@ $(LIBANN): $(LIB_OBJS)
4040
$(TARGET): $(LIBANN) mnist.o
4141
$(CC) -o $@ mnist.o $(LIBANN) $(LFLAGS)
4242

43+
mnist_hypertune: $(LIBANN) mnist_hypertune.o
44+
$(CC) -o $@ mnist_hypertune.o $(LIBANN) $(LFLAGS)
45+
4346
logic: $(LIBANN) logic.o
4447
$(CC) -o $@ logic.o $(LIBANN) $(LFLAGS)
4548

0 commit comments

Comments
 (0)