File tree 5 files changed +2
-1113
lines changed
java/dev/ludovic/netlib/blas
jdk17/dev/ludovic/netlib/blas
test/java/dev/ludovic/netlib/blas
5 files changed +2
-1113
lines changed Original file line number Diff line number Diff line change @@ -43,35 +43,6 @@ information or have any questions.
43
43
<junit .version>5.8.2</junit .version>
44
44
</properties >
45
45
46
- <profiles >
47
- <profile >
48
- <id >jdk17</id >
49
- <build >
50
- <plugins >
51
- <plugin >
52
- <groupId >org.codehaus.mojo</groupId >
53
- <artifactId >build-helper-maven-plugin</artifactId >
54
- <version >3.2.0</version >
55
- <executions >
56
- <execution >
57
- <id >add-source</id >
58
- <phase >generate-sources</phase >
59
- <goals >
60
- <goal >add-source</goal >
61
- </goals >
62
- <configuration >
63
- <sources >
64
- <source >src/main/jdk17</source >
65
- </sources >
66
- </configuration >
67
- </execution >
68
- </executions >
69
- </plugin >
70
- </plugins >
71
- </build >
72
- </profile >
73
- </profiles >
74
-
75
46
<dependencies >
76
47
<dependency >
77
48
<groupId >net.sourceforge.f2j</groupId >
Original file line number Diff line number Diff line change @@ -58,11 +58,6 @@ private static NativeBLAS getNativeInstanceImpl() {
58
58
} catch (Throwable t ) {
59
59
log .warning ("Failed to load implementation from:" + JNIBLAS .class .getName ());
60
60
}
61
- try {
62
- return (NativeBLAS )Class .forName ("dev.ludovic.netlib.blas.ForeignLinkerBLAS" ).getMethod ("getInstance" ).invoke (null );
63
- } catch (Throwable t ) {
64
- log .warning ("Failed to load implementation from:" + "dev.ludovic.netlib.blas.ForeignLinkerBLAS" );
65
- }
66
61
throw new RuntimeException ("Unable to load native implementation" );
67
62
}
68
63
You can’t perform that action at this time.
0 commit comments