Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparing 0.7.0 release #129

Merged
merged 9 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ if(CUDA_FOUND AND USEGPU)
else () # for now, we assume CUDA 11.2+ supports all these archs.
set(CUDA_ARCH_LIST "35;37;50;72;75;80;86")
endif()
else()
elseif (CUDA_VERSION_MAJOR STREQUAL "12")
set(CUDA_ARCH_LIST "52;60;72;75;80;86;89;90")
else() # some old CUDA version (<10)
set(CUDA_ARCH_LIST "50")
endif()
elseif((NOT CUDA_FOUND) AND USEGPU)
Expand Down
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ COPY ${LIB_LOCATION}/*.so* ${LIB_DIR}/

#Copy executable
COPY nyxus ${EXEC_DIR}/
COPY nyxushie ${EXEC_DIR}/

RUN chmod +x ${EXEC_DIR}/nyxus
RUN chmod +x ${EXEC_DIR}/nyxushie

WORKDIR ${EXEC_DIR}

Expand Down
18 changes: 10 additions & 8 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Nyxus",
"version": "0.4.1",
"containerId": "polusai/nyxus:0.4.2",
"version": "0.7.0",
"containerId": "polusai/nyxus:0.7.0",
"title": "Nyxus feature extraction",
"description": "Nyxus feature extractor",
"author": "friskluft + hsidky",
Expand Down Expand Up @@ -1123,13 +1123,15 @@
"required": true
},
{
"name": "csvFile",
"description": "csvfile : singlecsv for saving values in one csv file and separate csv to save values for each image in separate csv file",
"name": "outputType",
"description": "outputType : singlecsv for saving values in one csv file and separate csv to save values for each image in separate csv file, arrow and parquet for saving in those file formats respectively",
sameeul marked this conversation as resolved.
Show resolved Hide resolved
"type": "enum",
"options": {
"values": [
"singlecsv",
"separatecsv"
"separatecsv",
"arrow",
"parquet"
]
},
"required": true
Expand Down Expand Up @@ -1187,9 +1189,9 @@
"description": "Select features"
},
{
"key": "inputs.csvFile",
"title": "Output csv file",
"description": "Save csv file separately for each image or one csv file for all images"
"key": "inputs.outputType",
"title": "Output file type",
"description": "Save csv file separately for each image or one csv file for all images. Alternatively, outuput can be written as arrow or parquet file"
},
{
"key": "inputs.embeddedpixelsize",
Expand Down
Loading