File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ fashion_mnist.pikchr
2222fashion_mnist.svg
2323fashion_mnist.onnx
2424fashion_mnist_learning_curve.csv
25+ mnist_hypertune
2526
2627# Object files
2728* .o
Original file line number Diff line number Diff 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+
4346logic : $(LIBANN ) logic.o
4447 $(CC ) -o $@ logic.o $(LIBANN ) $(LFLAGS )
4548
You can’t perform that action at this time.
0 commit comments