Bump version to 5.0, resolves #167
This commit is contained in:
parent
a27abfe296
commit
01ef17e8b4
@ -4,7 +4,7 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.24.0")
|
|||||||
cmake_policy(SET CMP0135 NEW)
|
cmake_policy(SET CMP0135 NEW)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
project(BabelStream VERSION 4.0 LANGUAGES CXX C)
|
project(BabelStream VERSION 5.0 LANGUAGES CXX C)
|
||||||
|
|
||||||
# uncomment for debugging build issues:
|
# uncomment for debugging build issues:
|
||||||
#set(CMAKE_VERBOSE_MAKEFILE ON)
|
#set(CMAKE_VERBOSE_MAKEFILE ON)
|
||||||
|
|||||||
@ -18,7 +18,7 @@ else
|
|||||||
COMPILER=gcc
|
COMPILER=gcc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
FCFLAGS += -DVERSION_STRING="4.0"
|
FCFLAGS += -DVERSION_STRING="5.0"
|
||||||
#FCFLAGS += -DUSE_INT32
|
#FCFLAGS += -DUSE_INT32
|
||||||
|
|
||||||
ifeq ($(IMPLEMENTATION),DoConcurrent)
|
ifeq ($(IMPLEMENTATION),DoConcurrent)
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
<artifactId>java-stream</artifactId>
|
<artifactId>java-stream</artifactId>
|
||||||
<groupId>javastream</groupId>
|
<groupId>javastream</groupId>
|
||||||
<version>4.0</version>
|
<version>5.0</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
|||||||
@ -382,7 +382,7 @@ public class Main {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final String VERSION = "4.0";
|
private static final String VERSION = "5.0";
|
||||||
|
|
||||||
private static final float START_SCALAR = 0.4f;
|
private static final float START_SCALAR = 0.4f;
|
||||||
private static final float START_A = 0.1f;
|
private static final float START_A = 0.1f;
|
||||||
|
|||||||
@ -164,7 +164,7 @@ end
|
|||||||
|
|
||||||
const DefaultInit = (0.1, 0.2, 0.0)
|
const DefaultInit = (0.1, 0.2, 0.0)
|
||||||
const DefaultScalar = 0.4
|
const DefaultScalar = 0.4
|
||||||
const Version = "4.0"
|
const Version = "5.0"
|
||||||
|
|
||||||
function main()
|
function main()
|
||||||
|
|
||||||
|
|||||||
@ -15,7 +15,7 @@
|
|||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
#define VERSION_STRING "4.0"
|
#define VERSION_STRING "5.0"
|
||||||
|
|
||||||
#include "Stream.h"
|
#include "Stream.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rust-stream"
|
name = "rust-stream"
|
||||||
version = "4.0.0"
|
version = "5.0.0"
|
||||||
authors = ["Wei-Chen Lin <wl14928@bristol.ac.uk>"]
|
authors = ["Wei-Chen Lin <wl14928@bristol.ac.uk>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ lazy val root = (project in file("."))
|
|||||||
.enablePlugins(NativeImagePlugin)
|
.enablePlugins(NativeImagePlugin)
|
||||||
.settings(
|
.settings(
|
||||||
scalaVersion := "3.3.1",
|
scalaVersion := "3.3.1",
|
||||||
version := "4.0",
|
version := "5.0",
|
||||||
organization := "uk.ac.bristol.uob-hpc",
|
organization := "uk.ac.bristol.uob-hpc",
|
||||||
organizationName := "University of Bristol",
|
organizationName := "University of Bristol",
|
||||||
Compile / mainClass := mainCls,
|
Compile / mainClass := mainCls,
|
||||||
|
|||||||
@ -110,7 +110,7 @@ given DoubleFractional: Fractional[Double] with
|
|||||||
|
|
||||||
object App:
|
object App:
|
||||||
|
|
||||||
final val Version: String = "4.0"
|
final val Version: String = "5.0"
|
||||||
|
|
||||||
case class Config[@specialized(Double, Float) A](
|
case class Config[@specialized(Double, Float) A](
|
||||||
options: Options,
|
options: Options,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user