-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlprime.cu
781 lines (648 loc) · 19.2 KB
/
lprime.cu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
/* Copyright 1995-2002 Just For Fun Software, Inc. */
/* Author: George Woltman */
/* Email: [email protected] */
/* Adapted for llrp program by Jean Penné */
/* Email : [email protected] */
/* Include files */
#ifdef __FreeBSD__
/* FreeBSD needs to process sys/types.h before it can understand either
/* sys/time.h or sys/resource.h */
#include <sys/types.h>
#endif
#include <ctype.h>
#include <fcntl.h>
#include <math.h>
#include <memory.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
#include <dirent.h>
#include <unistd.h>
#include <sys/time.h>
#include <sys/resource.h>
#define $LLF "%qi"
#define __int64 long long
#else
#include <direct.h>
#include <dos.h>
#include <io.h>
#include <time.h>
#include <process.h>
#include <windows.h>
#define $LLF "%I64d"
#endif
#include <sys/timeb.h>
#include "lprime.h"
#include <cuda.h>
#include <cuda_runtime.h>
#include <cufft.h>
//#include <cutil_inline.h>
/* Globals */
#define OPEN_MAX 20
#ifdef MPRIME_LOADAVG
#define LINUX_LDAV_FILE "/proc/loadavg"
int volatile SLEEP_STOP = 0;
long LOAD_CHECK_TIME = 0;
double HI_LOAD = 0.0;
double LO_LOAD = 0.0;
#endif
int volatile THREAD_STOP = 0;
int volatile THREAD_KILL = 0;
int NO_GUI = 1;
int VERBOSE = 0;
int MENUING = 0;
int PROCESSFILE = 0;
int SINGLETEST = 0;
int nbllr_mallocs = 0;
int nbllr_frees =0;
//cuda int g_roundoff = 0; //cuda
/* Common code */
#ifdef __linux__
#define PORT 2
#endif
#ifdef __APPLE__
#define PORT 2
#endif
#ifdef __FreeBSD__
#define PORT 6
#endif
#ifdef __EMX__
#define PORT 7
#endif
#include "Jacobi.c"
#include "kronecker.c"
#include "Qfields.c"
#include "factor.c"
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
#include "mpz_aprcl.c"
#endif
//#include "gwypini.c"
#include "Llr.c"
/* Signal handlers */
void sigterm_handler(int signo)
{
THREAD_STOP = TRUE;
if (signo != SIGINT) THREAD_KILL = TRUE;
printf("\n Caught signal. Terminating.\n");
(void)signal(signo, sigterm_handler);
}
#ifdef MPRIME_LOADAVG
/* Routine to get the current load average */
double get_load_average ()
{
#if defined (__linux__) || defined (__APPLE__)
char ldavgbuf[40];
double load_avg;
int fd, count;
fd = open (LINUX_LDAV_FILE, O_RDONLY);
if (fd == -1) return (-1.0);
count = read (fd, ldavgbuf, 40);
(void) close (fd);
if (count <= 0) return (-1.0);
count = sscanf (ldavgbuf, "%lf", &load_avg);
if (count < 1) return (-1.0);
return (load_avg);
#endif
#ifdef __FreeBSD__
double load[3];
if (getloadavg (load, sizeof(load)/sizeof(load[0])) < 0)
return (-1.0);
return (load[0]);
#endif
}
/* load_handler: call by signal routine,
sets SLEEP_STOP to TRUE if load is too high */
void load_handler (
int sig)
{
double load_avg;
load_avg = get_load_average ();
if (load_avg < 0.0) return;
if (SLEEP_STOP) {
if (load_avg < LO_LOAD)
SLEEP_STOP = FALSE;
} else {
if (load_avg > HI_LOAD)
SLEEP_STOP = TRUE;
}
}
/* init_load_check: initialises timer that calls load_handler
every LOAD_CHECK_TIME seconds */
void init_load_check ()
{
struct itimerval timer, otimer;
struct sigaction sigact;
int ret;
timer.it_interval.tv_sec = LOAD_CHECK_TIME;
timer.it_interval.tv_usec = 0;
timer.it_value.tv_sec = LOAD_CHECK_TIME;
timer.it_value.tv_usec = 0;
ret = setitimer (ITIMER_REAL, &timer, &otimer);
if (ret < 0) return;
sigact.sa_handler = &load_handler;
sigemptyset(&sigact.sa_mask);
sigact.sa_flags = SA_RESTART;
ret = sigaction(SIGALRM, &sigact, NULL);
if (ret < 0) { /* clean up after ourselves */
setitimer (ITIMER_REAL, &otimer, NULL);
}
}
/* test_sleep: tests if SLEEP_STOP is set and sleeps until load is normal
again or THREAD_STOP is set
*/
void test_sleep (void)
{
sigset_t newmask;
while (SLEEP_STOP && !THREAD_STOP) {
sigemptyset (&newmask);
sigsuspend (&newmask);
}
}
#endif
/* Main entry point! */
int main (
int argc,
char *argv[])
{
char buf[256];
int named_ini_files = -1;
int background = 0;
int i, opcnt = 0, leftbracket = 0;
char *p;
char *p2;
char m_pgen_input[80], m_pgen_output[80], oldm_pgen_input[80];
char keywords[10][80], values[10][80];
char multiplier[80], base[80], exponent[80], addin[80];
char dnflag = ' ';
FILE *in;
int device_count=0;
int device_number=0;
struct cudaDeviceProp properties;
/* catch termination signals */
(void)signal(SIGTERM, sigterm_handler);
(void)signal(SIGINT, sigterm_handler);
s_FFTLEN = 0; //cuda
/* No buffering of output */
setvbuf (stdout, NULL, _IONBF, 0);
/* Change to the executable's directory*/
strcpy (buf, argv[0]);
p = strrchr (buf, '/');
if (p != NULL) {
*p = 0;
if (_chdir (buf))
printf ("Could not change to the executable directory...\n");
}
/* Process command line switches */
for (i = 1; i < argc; i++) {
p = argv[i];
if (*p++ != '-') { // Process filename in command line
if (PROCESSFILE) break;
p--;
strcpy (m_pgen_input, p);
strcpy (m_pgen_output, p);
p2 = strrchr (m_pgen_output, '.');
if (p2 != NULL)
strcpy (p2, ".res");
else
strcpy (m_pgen_output+strlen (m_pgen_output), ".res");
PROCESSFILE = 1;
continue;
}
switch (*p++) {
/* Accept a -A switch indicating an alternate set of INI files */
/* are to be used. */
case 'A':
case 'a':
named_ini_files = 0;
while (isspace (*p)) p++;
while (isdigit (*p)) {
named_ini_files = named_ini_files * 10 + (*p - '0');
p++;
}
break;
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
/* -B - put in the background. Accepts an optional CPU count. */
case 'B':
case 'b':
while (isspace (*p)) p++;
if (isdigit (*p)) {
background = 0;
while (isdigit (*p)) {
background = background * 10 + (*p - '0');
p++;
}
} else
background = 1;
break;
#endif
/* -D - debug */
case 'D':
case 'd':
VERBOSE = TRUE;
NO_GUI = FALSE;
break;
/* -O - Option */
case 'O':
case 'o':
p2 = strchr (p, '=');
if (p2 == NULL) // Ignore an invalid option...
break;
if (opcnt >= 10) // Maximum 10 options...
break;
strcpy (values[opcnt], p2+1);
p2 = keywords[opcnt];
while (*p != '=')
*p2++ = *p++;
*p2 = '\0';
opcnt++;
break;
/* -Q - Test a single k*b^n+c number */
case 'Q':
case 'q':
if (*p == '(') { // must begin with digits or (
// quotient = TRUE;
leftbracket = 1;
p++;
}
if (!isdigit(*p))
// must be digits,now...
goto errexpr;
p2 = multiplier; // get the expected multiplier
while (isdigit(*p))
// copy the digits
*p2++ = *p++;
*p2 = '\0';
if (*p == '\0') { // Multiplier alone
strcpy (base, "2"); // No matter...
strcpy (exponent, "0"); // Exponent = zero
strcpy (addin, "+0"); // c = +zero
goto DIGITSONLY;
}
if (*p == '^') { // the multiplier was ommitted
strcpy (base, multiplier); // get the base in place
strcpy (multiplier, "1"); // default multiplier = 1
p++;
goto NOMULTIPLIER;
}
else if (*p++ != '*') // get the base
goto errexpr;
if (!isdigit(*p))
// it must be a digit string
goto errexpr;
p2 = base;
while (isdigit(*p))
// copy the digits
*p2++ = *p++;
*p2 = '\0';
if (*p++ != '^')
// must be power
goto errexpr;
NOMULTIPLIER:
if (!isdigit(*p))
// must be digits...
goto errexpr;
p2 = exponent; // get the exponent
while (isdigit(*p))
// copy the digits
*p2++ = *p++;
*p2 = '\0';
if (*p != '+' && *p != '-')
// must be plus or minus
goto errexpr;
p2 = addin;
*p2++ = *p++; // copy the sign
if (!isdigit(*p))
goto errexpr;
while (isdigit(*p)) // copy the c value
*p2++ = *p++;
*p2 = '\0';
dnflag = ' '; // restore the dnflag
if (*p == ')') {
if (*(p+1) == '/') { // get the divisor(s)
quotient = TRUE;
p += 2;
strcpy (divisors, p); // and that is all...
}
}
else {
if ((*p != '\0') && ((addin[0] != '-') || (*p != '^'))) // must be end of string or diffnum...
goto errexpr;
if (*p++ != '\0') {
if (strcmp (base, addin+1)) // The second base must be the same...
goto errexpr;
if (!isdigit(*p)) // must be digits...
goto errexpr;
p2 = exponent2; // get the exponent
while (isdigit(*p)) // copy the digits
*p2++ = *p++;
*p2 = '\0';
if (*p != '+' && *p != '-') // must be plus or minus
goto errexpr;
dnflag = *p; // dnflag = sign
p2 = addin;
*p2++ = *p++; // copy the sign
if (!isdigit(*p))
goto errexpr;
while (isdigit(*p)) // copy the c value
*p2++ = *p++;
}
}
*p2 = '\0';
DIGITSONLY:
in = fopen ("$temp.npg", "w"); // open the temporary input file
if ((dnflag == '+') || (dnflag == '-')) {
fprintf (in, "ABC $a^$b-$a^$c$d\n");// write ABC header and data
fprintf (in, "%s %s %s %s\n", base, exponent, exponent2, addin);
}
else {
if (quotient) {
fprintf (in, "ABC ($a*$b^$c$d)/$e\n");// write ABC header and data
fprintf (in, "%s %s %s %s %s\n", multiplier, base, exponent, addin, divisors);
}
else if (leftbracket){
fprintf (in, "ABC ($a^$b$c)^2-2\n");// write ABC header and data
fprintf (in, "%s %s %s\n", base, exponent, addin);
}
else {
fprintf (in, "ABC $a*$b^$c$d\n");// write ABC header and data
fprintf (in, "%s %s %s %s\n", multiplier, base, exponent, addin);
}
}
fclose (in);
strcpy (m_pgen_input, "$temp.npg");
strcpy (m_pgen_output, "$temp.res");
PROCESSFILE = 1;
SINGLETEST = 1;
break;
/* -H - help */
case 'H':
case 'h':
case '?':
goto usage;
/* -M - Menu */
case 'M':
case 'm':
MENUING = TRUE;
NO_GUI = FALSE;
break;
/* -V - version number */
case 'V':
case 'v':
printf ("Primality Testing of k*b^n+/-1 Program - GPU Version 3.8.8 ; linked with CUDA Version 8.0.44\n");
return (0);
/* -W - use a different working directory */
case 'W':
case 'w':
if (_chdir (p))
printf ("Could not change the working directory...\n");
;
break;
/* Otherwise unknown switch */
default:
printf ("Invalid switch\n");
goto usage;
}
}
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
/* Run in background if requested. Code courtesy of Francois Gouget. */
if (background) {
int i;
/* To enter daemon mode, close all the filedescs and detach from the tty */
for (i = 0; i < background; i++) {
int fd;
fd = fork ();
if (fd == -1) {
perror ("Could not fork to the background");
exit (1);
}
if (fd != 0) {
exit (0);
}
for (fd = 0; fd < OPEN_MAX; fd++) {
close (fd);
}
open ("/dev/null", O_APPEND);
dup2 (0,1);
dup2 (0,2);
setsid ();
if (i) named_ini_files = i;
}
}
#endif
/* Determine the names of the INI files */
/* Read the INI files */
nameIniFiles (named_ini_files);
readIniFiles ();
// Copy the options in the init. file
for (i=0; i< opcnt; i++) {
IniWriteString (INI_FILE, keywords[i] , NULL); // Delete the line
IniWriteString (INI_FILE, keywords[i] , values[i]); // Make a new line
}
#ifdef MPRIME_LOADAVG
/* Read load averaging settings from INI files */
IniGetString (INI_FILE, (char*)"MaxLoad", buf, sizeof (buf), (char*)"0");
HI_LOAD = atof (buf);
IniGetString (INI_FILE, (char*)"MinLoad", buf, sizeof (buf), (char*)"0");
LO_LOAD = atof (buf);
IniGetString (INI_FILE, (char*)"PauseTime", buf, sizeof (buf), (char*)"0");
LOAD_CHECK_TIME = atol (buf);
/* Initialise load checking */
if (HI_LOAD > 0.0 && LOAD_CHECK_TIME > 0)
init_load_check ();
#endif
// Process the file name
if (PROCESSFILE) {
IniWriteInt (INI_FILE, (char*)"Work", 0);
IniGetString (INI_FILE, (char*)"PgenInputFile", oldm_pgen_input, 80, (char*)"blablabla.bla");
IniWriteString (INI_FILE, (char*)"PgenInputFile", m_pgen_input);
if (strcmp (m_pgen_input, oldm_pgen_input) || IniGetInt (INI_FILE, (char*)"WorkDone", 0)) {
IniWriteString (INI_FILE, (char*)"PgenOutputFile", m_pgen_output);
if (!IniGetInt (INI_FILE, (char*)"PgenLine", 0))
IniWriteInt (INI_FILE, (char*)"PgenLine", 1);
IniWriteInt (INI_FILE, (char*)"WorkDone", 0);
}
}
readIniFiles ();
// Read again the init. files, that may have been updated...
/* Bring up the main menu */
if (MENUING)
main_menu ();
cudaGetDeviceCount( &device_count);
if(CPU_AFFINITY != 99)
device_number = CPU_AFFINITY;
else
device_number = IniGetInt (INI_FILE,(char*) "GPUDEVICE", 0); // JP 29/02/24
if (device_number >= device_count) {
printf("device_number = %d >= device_count = %d ... exiting\n", device_number, device_count);
exit(2);
}
cudaSetDeviceFlags(cudaDeviceBlockingSync);
cudaSetDevice(device_number);
// From Iain
cudaGetDeviceProperties(&properties, device_number);
if (properties.major == 1 && properties.minor < 3){
printf("A GPU with compute capability >= 1.3 is required for double precision arithmetic\n");
exit(2);
}
/* Continue testing the range */
else
linuxContinue ((char*)"Another llrCUDA is already running!\n");
/* All done */
return (0);
/* Invalid args message */
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
usage: printf ("Usage: llrCUDA [-aN] [-bdhmoqv] [-wDIR] [input file name]\n");
#else
usage: printf ("Usage: llrCUDA [-aN] [-dhmoqv] [-wDIR] [input file name]\n");
#endif
printf ("-aN\tUse an alternate set of INI and output files.\n");
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
printf ("-bN\tRun in the background.\n");
#endif
printf ("-d\tPrint detailed information to stdout.\n");
printf ("-h\tPrint this.\n");
printf ("-m\tMenu to configure llrp.\n");
printf ("-okeyword=value\tSet an option in .ini file.\n");
printf ("-q\"expression\"\tTest a single k*b^n+c number.\n");
printf ("-v\tPrint the version number.\n");
printf ("-wDIR\tRun from a different working directory.\n");
printf ("\n");
return (1);
/* Invalid expression message */
errexpr: printf ("Invalid expression in command line.\n");
return (2);
}
void title (char *msg)
{
}
void flashWindowAndBeep (unsigned long n)
{
while (n--)
printf ("\007\r");
Sleep (500);
}
/* Return TRUE if we should stop calculating */
int escapeCheck ()
{
if (THREAD_STOP) {
THREAD_STOP = 0;
return (TRUE);
}
return (FALSE);
}
void doMiscTasks ()
{
#ifdef MPRIME_LOADAVG
test_sleep ();
#endif
}
void OutputStr (char *buf)
{
if (VERBOSE || MENUING) printf ("%s", buf);
}
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
void Sleep (
long ms)
{
sleep (ms/1000);
}
/* Set priority. Map one (prime95's lowest priority) to 20 */
/* (linux's lowest priority). Map eight (prime95's normal priority) to */
/* 0 (linux's normal priority). */
void SetPriority ()
{
int p, result;
p = (8 - (int) PRIORITY) * 20 / 7;
setpriority (PRIO_PROCESS, getpid (), p);
if (CPU_AFFINITY != 99) {
char affstring [80];
sprintf (affstring, "taskset -p %d %d\n", CPU_MASK, getpid());
result = system (affstring);
if (result);
}
}
#else
void SetPriority (void)
{
SetPriorityClass (GetCurrentProcess (),
(PRIORITY > 6) ? NORMAL_PRIORITY_CLASS : IDLE_PRIORITY_CLASS);
SetThreadPriority (GetCurrentThread (),
(PRIORITY == 1) ? THREAD_PRIORITY_IDLE :
(PRIORITY == 2 || PRIORITY == 7) ? THREAD_PRIORITY_LOWEST :
(PRIORITY == 3 || PRIORITY == 8) ? THREAD_PRIORITY_BELOW_NORMAL :
(PRIORITY == 4 || PRIORITY == 9) ? THREAD_PRIORITY_NORMAL :
(PRIORITY == 5 || PRIORITY == 10) ? THREAD_PRIORITY_ABOVE_NORMAL :
THREAD_PRIORITY_HIGHEST);
}
#endif
void BlinkIcon (int x)
{
}
void ChangeIcon (int x)
{
}
void ReplaceableLine (int x)
{
}
/* This routine calls primeContinue unless there is another copy of mprime */
/* already running. In that case, it outputs an optional error message. */
void linuxContinue (
char *error_message)
{
int completed = FALSE;
#ifdef __APPLE__
#define PROCNAME "/proc/%d/exe"
#endif
#ifdef __linux__
#define PROCNAME "/proc/%d/exe"
#endif
#ifdef __FreeBSD__
#define PROCNAME "/proc/%d/file"
#endif
#if defined (__linux__) || defined (__FreeBSD__) || defined (__APPLE__)
pid_t my_pid, running_pid;
char filename[30];
int fd;
struct stat filedata;
ino_t inode1, inode2;
/* Compare this process' ID and the pid from the INI file */
my_pid = getpid ();
openIniFile (INI_FILE, 1);
running_pid = IniGetInt (INI_FILE, (char*)"Pid", 0);
if (running_pid == 0 || my_pid == running_pid) goto ok;
/* See if the two pids are running the same executable */
sprintf (filename, PROCNAME, my_pid);
fd = _open (filename, _O_RDONLY);
if (fd < 0) goto ok;
fstat (fd, &filedata);
inode1 = filedata.st_ino;
_close (fd);
sprintf (filename, PROCNAME, running_pid);
fd = _open (filename, _O_RDONLY);
if (fd < 0) goto ok;
fstat (fd, &filedata);
inode2 = filedata.st_ino;
_close (fd);
if (inode1 != inode2) goto ok;
/* The two pids are running the same executable, raise an error and return */
if (error_message != NULL) printf ("%s", error_message);
return;
/* All is OK. Save our pid, run, then delete our pid */
ok: IniWriteInt (INI_FILE, (char*)"Pid", my_pid);
#endif
w = (struct work_unit *) malloc (sizeof (struct work_unit));
// if (w == NULL) goto nomem;
memset (w, 0, sizeof (struct work_unit));
completed = primeContinue ();
free (w);
IniWriteInt (INI_FILE, (char*)"Pid", 0);
_unlink ("$temp.npg");
_unlink ("$temp.res");
if (PROCESSFILE && IniGetInt (INI_FILE, (char*)"WorkDone", 0))
IniWriteString (INI_FILE, (char*)"PgenLine", NULL);
if (SINGLETEST && completed)
_unlink (INI_FILE);
}