Nan Yuan

16 papers A 1C 5Journal 5Unranked 5
YearRankTypeTitle / Venue / Authors
2026 J jnl
Inf. Syst. Frontiers
Jingjing Li, Haiyang Feng, Nan Feng, Nan Yuan
2025 J jnl
Inf. Manag.
Xinman Lu, Xiaoling Hou, Nan Yuan, Jun Wang
2022 J jnl
J. Assoc. Inf. Syst.
Nan Yuan, Haiyang Feng, Minqiang Li, Nan Feng
2011 J jnl
Trans. High Perform. Embed. Archit. Compil.
Nan Yuan, Lei Yu, Dongrui Fan
2010 A conf
IPDPS
Xiaochun Ye, Dongrui Fan, Wei Lin, Nan Yuan, Paolo Ienne
2009 conf
CIT (1)
Wei Lin, Dongrui Fan, He Huang, Nan Yuan, Xiaochun Ye
2009 C conf
ISPA
He Huang, Lei Liu, Nan Yuan, Wei Lin, Fenglong Song, Junchao Zhang, Dongrui Fan
2009 C conf
ISPA
Yongbin Zhou, Junchao Zhang, Shuai Zhang, Nan Yuan, Dongrui Fan
2009 conf
CIT (1)
Fenglong Song, Zhiyong Liu, Dongrui Fan, Junchao Zhang, Lei Yu, Nan Yuan, Wei Lin
2009 C conf
ISPA
Fenglong Song, Zhiyong Liu, Dongrui Fan, He Huang, Nan Yuan, Lei Yu, Junchao Zhang
2009 J jnl
J. Comput. Sci. Technol.
Dongrui Fan, Nan Yuan, Junchao Zhang, Yongbin Zhou, Wei Lin, Fenglong Song, Xiaochun Ye, He Huang, Lei Yu, Guoping Long, Hao Zhang, Lei Liu
2009 conf
Euro-Par
Nan Yuan, Yongbin Zhou, Guangming Tan, Junchao Zhang, Dongrui Fan
2009 C conf
SNPD
Lei Yu, Zhiyong Liu, Dongrui Fan, Fenglong Song, Junchao Zhang, Nan Yuan
2008 conf
Euro-Par
Guoping Long, Dongrui Fan, Junchao Zhang, Fenglong Song, Nan Yuan, Wei Lin
2008 C conf
PDCAT
Guoping Long, Nan Yuan, Dongrui Fan
2007 conf
ARCS
Xuehai Qian, He Huang, Zhenzhong Duan, Junchao Zhang, Nan Yuan, Yongbin Zhou, Hao Zhang, Huimin Cui, Dongrui Fan
docker-build.sh
← Index docker-build.sh bash
#!/bin/bash

set -e

echo "Building REDB Docker image for linux/amd64 platform..."

# Function to tag the most recent <none> image
tag_unnamed_image() {
    local tag_name=$1
    local expected_size=$2
    
    # Get the most recent <none> image
    local image_id=$(docker images --filter "dangling=true" --format "{{.ID}}" | head -1)
    
    if [ -z "$image_id" ]; then
        echo "ERROR: No unnamed image found. Build may have failed."
        return 1
    fi
    
    local actual_size=$(docker images --format "table {{.ID}}\t{{.Size}}" | grep $image_id | awk '{print $2}')
    echo "Found image $image_id with size: $actual_size (expected: $expected_size)"
    
    # Tag the image
    echo "Tagging as $tag_name..."
    docker tag $image_id $tag_name
    
    return 0
}

# Build single unified image
echo ""
echo "Building REDB unified image - Supports both feature extraction and decompilation..."
echo "NOTE: If build hangs at 'exporting to image', press Ctrl+C - the image will still be created!"
echo ""

docker build --platform linux/amd64 -f Dockerfile -t redb:latest . || echo "Build interrupted (this is expected due to Docker Desktop bug)"

# Tag the image if it was built as unnamed
if docker images --filter "dangling=true" --format "{{.ID}}" | head -1 | grep -q "."; then
    tag_unnamed_image "redb:latest" "500MB"
fi

echo ""
echo "Docker build completed!"
echo ""
echo "Available images:"
docker images | grep redb

echo ""
echo "Image size:"
echo "REDB unified image: $(docker images redb:latest --format "{{.Size}}")"

echo ""
echo "Usage:"
echo "  Feature extraction: docker run redb:latest python3 start.py --nomad-job"
echo "  Decompilation:      docker run redb:latest python3 start.py --nomad-job --decompile"
echo "  Custom modules:     docker run redb:latest python3 start.py --nomad-job --modules BasicPropertiesExtractor,PEFeaturesExtractor"