Мелкие правки

This commit is contained in:
2025-12-02 11:45:34 +00:00
parent 02a754f314
commit 38b5e6b211
3 changed files with 10 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ TARGET = $(BUILD_DIR)/bitcoin_app
PLUGIN_SRC = $(SRC_DIR)/gpu_plugin.cu
PLUGIN = $(BUILD_DIR)/libgpu_compute.so
all: $(BUILD_DIR) $(PLUGIN) $(TARGET)
all: $(PLUGIN) $(TARGET)
$(BUILD_DIR):
mkdir -p $(BUILD_DIR)
@@ -32,4 +32,7 @@ $(PLUGIN): $(PLUGIN_SRC) | $(BUILD_DIR)
clean:
rm -rf $(BUILD_DIR)
.PHONY: all clean
run: all
sbatch run.slurm
.PHONY: all clean run