/**
  * Manages all models.
  */
 public function actionIndex()
 {
     $model = new ABenchmark('search');
     $model->unsetAttributes();
     // clear any default values
     if (isset($_GET['ABenchmark'])) {
         $model->attributes = $_GET['ABenchmark'];
     }
     $this->render('index', array('model' => $model));
 }