Skip to content
This repository was archived by the owner on Mar 11, 2019. It is now read-only.

Commit 47049c9

Browse files
committed
chore(README): updates README
Updates the informations, adds the coveralls' logo. chore(build): add Coveralls' plugin Adds the Coveralls plugin, updates the .travis.yml for adding the related command. chore(build): updates the powerspy.scala dependency Uses now the new version of the powerspy.scala project. chore(copyright): updates the copyright header Updates all copyright headers in files. refactor(imports): updates imports Removes all the useless imports.
1 parent 62d385d commit 47049c9

File tree

120 files changed

+129
-141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+129
-141
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ script:
66
after_success:
77
- sbt "project powerapi-core" coverageReport
88
- sbt "project powerapi-core" codacyCoverage
9+
- sbt "project powerapi-core" coveralls

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<img src="https://rawgit.com/Spirals-Team/powerapi/master/resources/logo/PowerAPI-logo.png" alt="Powerapi" width="300px">
22

3+
[![Join the chat at https://gitter.im/Spirals-Team/powerapi](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Spirals-Team/powerapi?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4+
35
[![OSS Licence](http://img.shields.io/badge/license-AGPLv3-532553.svg)](https://www.gnu.org/licenses/agpl-3.0.html)
46
[![Build Status](https://travis-ci.org/Spirals-Team/powerapi.svg)](https://travis-ci.org/Spirals-Team/powerapi)
5-
[![Codacy Badge](https://www.codacy.com/project/badge/e0b0e331ca414250a7240b6be74aaa7b)](https://www.codacy.com/public/maximecolmant/powerapi)
6-
7-
[![Join the chat at https://gitter.im/Spirals-Team/powerapi](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Spirals-Team/powerapi?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7+
[![Coverage Status](https://coveralls.io/repos/Spirals-Team/powerapi/badge.svg)](https://coveralls.io/r/Spirals-Team/powerapi)
8+
[![Codacy Badge](https://www.codacy.com/project/badge/31f7762213c340fbb5fe1463a5b871d4)](https://www.codacy.com/app/mcolmant/powerapi)
89

910
PowerAPI is a middleware toolkit for building software-defined power meters.
1011
Software-defined power meters are configurable software libraries that can estimate the power consumption of software in real-time.
@@ -45,7 +46,7 @@ We all stand on the shoulders of giants and get by with a little help from our f
4546
* [Akka](http://akka.io) (version 2.3.11 under [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0)), for asynchronous processing
4647
* [Typesafe Config](https://github.com/typesafehub/config) (version 1.2.1 under [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0)), for reading configuration files.
4748
* [Apache log4j2](http://logging.apache.org/log4j/2.x) (version 2.3 under [Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0)), for logging outside actors.
48-
* [powerspy.scala](https://github.com/Spirals-Team/powerspy.scala) (version 1.0.1 under [AGPL license](http://www.gnu.org/licenses/agpl-3.0.html)), for using the [PowerSpy powermeter](http://www.alciom.com/en/products/powerspy2-en-gb-2.html).
49+
* [powerspy.scala](https://github.com/Spirals-Team/powerspy.scala) (version 1.2 under [AGPL license](http://www.gnu.org/licenses/agpl-3.0.html)), for using the [PowerSpy powermeter](http://www.alciom.com/en/products/powerspy2-en-gb-2.html).
4950
* [BridJ](https://code.google.com/p/bridj/) (version 0.7.0 under [3-clause BSD license](https://github.com/ochafik/nativelibs4java/blob/master/libraries/BridJ/LICENSE)), for system or C calls.
5051
* [perfmon2](http://sourceforge.net/p/perfmon2/libpfm4/ci/master/tree) (version 4.6.0 under [MIT license](http://sourceforge.net/p/perfmon2/libpfm4/ci/master/tree/COPYING)), for accessing hardware performance counters.
5152
* [JFreeChart](http://www.jfree.org/jfreechart/) (version 1.0.19 under [LGPL license](https://www.gnu.org/licenses/lgpl.html)), for creation of interactive and animated charts.

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "powerapi"
22

3-
version in ThisBuild := "3.1"
3+
version in ThisBuild := "3.2"
44

55
scalaVersion in ThisBuild := "2.11.6"
66

powerapi-cli/src/main/scala/org/powerapi/app/PowerAPI.scala

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
package org.powerapi.app
2424

2525
import java.lang.management.ManagementFactory
26-
2726
import org.powerapi.core.target.{Application, All, Process, Target}
2827
import org.powerapi.module.rapl.RAPLModule
2928
import org.powerapi.reporter.{FileDisplay, JFreeChartDisplay, ConsoleDisplay}

powerapi-core/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resolvers ++= Seq(
1010
libraryDependencies ++= Seq(
1111
"com.typesafe.akka" %% "akka-actor" % "2.3.11",
1212
"com.typesafe" % "config" % "1.2.1",
13-
"fr.inria.powerspy" % "powerspy-core_2.11" % "1.1",
13+
"fr.inria.powerspy" % "powerspy-core_2.11" % "1.2",
1414
"com.nativelibs4java" % "bridj" % "0.7.0",
1515
"com.github.scala-incubator.io" %% "scala-io-core" % "0.4.3",
1616
"com.github.scala-incubator.io" %% "scala-io-file" % "0.4.3",

powerapi-core/src/main/java/org/powerapi/module/libpfm/CUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/ClockActors.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/ClockChannel.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/Component.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/Configuration.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/ExternalPMeter.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/FileHelper.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/MessageBus.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/MonitorActors.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/MonitorChannel.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/OSHelper.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/**
1+
/*
22
* This software is licensed under the GNU Affero General Public License, quoted below.
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as
@@ -17,7 +17,7 @@
1717
*
1818
* You should have received a copy of the GNU Affero General Public License
1919
* along with PowerAPI.
20-
20+
*
2121
* If not, please consult http://www.gnu.org/licenses/agpl-3.0.html.
2222
*/
2323
package org.powerapi.core

powerapi-core/src/main/scala/org/powerapi/core/power/Power.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as
@@ -22,7 +22,7 @@
2222
*/
2323
package org.powerapi.core.power
2424

25-
import scala.concurrent.duration._
25+
import scala.concurrent.duration.{DurationInt, FiniteDuration}
2626
import org.apache.logging.log4j.LogManager
2727
import RawPower._
2828

powerapi-core/src/main/scala/org/powerapi/core/power/PowerUnit.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/power/package.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/target/Target.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/core/target/package.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/Cache.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/FormulaComponent.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/PowerChannel.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/SensorChannel.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/SensorComponent.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/UsageMetricsChannel.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/dvfs/CpuDvfsModule.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/dvfs/CpuFormula.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/dvfs/CpuFormulaConfiguration.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/dvfs/CpuSensor.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/simple/CpuFormula.scala

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as
@@ -22,13 +22,12 @@
2222
*/
2323
package org.powerapi.module.cpu.simple
2424

25-
import org.powerapi.core.{Configuration, MessageBus}
25+
import org.powerapi.core.MessageBus
2626
import org.powerapi.core.power._
2727
import org.powerapi.module.FormulaComponent
2828
import org.powerapi.module.cpu.UsageMetricsChannel.{subscribeSimpleUsageReport, UsageReport}
2929
import org.powerapi.module.PowerChannel.publishRawPowerReport
3030

31-
3231
/**
3332
* Implements a CpuFormula by making the ratio between maximum CPU power (obtained by multiplying
3433
* its Thermal Design Power (TDP) value by a specific factor) and the process CPU usage.

powerapi-core/src/main/scala/org/powerapi/module/cpu/simple/CpuFormulaConfiguration.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/simple/CpuSensor.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/cpu/simple/CpuSimpleModule.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/libpfm/LibpfmCoreModule.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/libpfm/LibpfmCoreProcessModule.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/libpfm/LibpfmCoreProcessSensor.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

powerapi-core/src/main/scala/org/powerapi/module/libpfm/LibpfmCoreProcessSensorConfiguration.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* This file is a part of PowerAPI.
55
*
6-
* Copyright (C) 2011-2014 Inria, University of Lille 1.
6+
* Copyright (C) 2011-2015 Inria, University of Lille 1.
77
*
88
* PowerAPI is free software: you can redistribute it and/or modify
99
* it under the terms of the GNU Affero General Public License as

0 commit comments

Comments
 (0)