tessl install tessl/pypi-cupy-cuda101@9.6.0CuPy: NumPy & SciPy for GPU (CUDA 10.1 version)
Agent Success
Agent success rate when using this tile
87%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.19x
Baseline
Agent success rate without this tile
73%
{
"context": "This criteria evaluates how well the engineer uses CuPy's histogram computation functions to solve data distribution analysis tasks. The focus is on correct usage of histogram, histogram2d, digitize, and bincount functions.",
"type": "weighted_checklist",
"checklist": [
{
"name": "histogram usage",
"description": "Uses cupy.histogram() or cp.histogram() to compute 1D histogram in analyze_distribution function, correctly returning both counts and bin edges",
"max_score": 25
},
{
"name": "histogram2d usage",
"description": "Uses cupy.histogram2d() or cp.histogram2d() to compute 2D histogram in analyze_2d_distribution function, correctly handling x and y data and returning 2D counts with both x and y bin edges",
"max_score": 25
},
{
"name": "digitize usage",
"description": "Uses cupy.digitize() or cp.digitize() to assign data points to bins in assign_to_bins function, returning bin indices for each data point",
"max_score": 25
},
{
"name": "bincount usage",
"description": "Uses cupy.bincount() or cp.bincount() to count occurrences of integer values in count_occurrences function, correctly using the minlength parameter when provided",
"max_score": 25
}
]
}