-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlaunch_cursor.sh
More file actions
executable file
·47 lines (39 loc) · 1.29 KB
/
launch_cursor.sh
File metadata and controls
executable file
·47 lines (39 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
# Launch GPU Performance Testing Project in Cursor
echo "🚀 Launching GPU Performance Testing Project in Cursor"
echo "======================================================"
echo ""
# Check if cursor is available
if ! command -v cursor &> /dev/null; then
echo "❌ Cursor not found. Please install Cursor IDE."
exit 1
fi
# Project directory
PROJECT_DIR="/home/d/AI_Workspace/Projects/GPU_Performance_Testing"
# Check if project exists
if [ ! -d "$PROJECT_DIR" ]; then
echo "❌ Project directory not found: $PROJECT_DIR"
exit 1
fi
echo "📁 Project Directory: $PROJECT_DIR"
echo "🔧 Hardware: AMD RX 6600 + NVIDIA RTX 3050"
echo "🖥️ Platform: Kali Linux"
echo ""
# Display project structure
echo "📂 Project Structure:"
tree "$PROJECT_DIR" -L 2 2>/dev/null || ls -la "$PROJECT_DIR"
echo ""
# Launch Cursor
echo "🎯 Opening in Cursor IDE..."
cursor "$PROJECT_DIR"
# Optional: Show quick start commands
echo ""
echo "🚀 Quick Start Commands:"
echo " ./scripts/gpu_dashboard.sh # Main dashboard"
echo " ./scripts/monitor_gpus.sh # GPU monitoring"
echo " python scripts/gpu_analyzer.py # Python analysis"
echo ""
echo "📚 Documentation:"
echo " README.md # Project overview"
echo " configs/gpu_profiles.json # GPU profiles"
echo ""