#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#include "abort_prog.h"
#include "parse_opts.h"
Functions | |
int | StringMatches (const char *source,...) |
Returns 0 <==> the given source string does not match any of a list of possible strings. | |
size_t | ParseByteString (const char *s) |
Parses a string specifying a size in bytes. | |
oski_storage_t | ParseDenseMatLayout (const char *s) |
Parse a vector layout string. | |
oski_matop_t | ParseMatTransOp (const char *s) |
Parse a matrix-transpose option. | |
void | PrintMatTransOp (FILE *fp, const char *matname, oski_matop_t op) |
Print matrix transpose option. | |
void | PrintDebugMatTransOp (int level, const char *matname, oski_matop_t op) |
Print matrix transpose option. | |
oski_ataop_t | ParseMatATAOp (const char *s) |
Parse a matrix-transpose option. | |
void | PrintMatATAOp (FILE *fp, const char *matname, oski_ataop_t op) |
Print matrix-transpose option. | |
void | PrintDebugMatATAOp (int level, const char *matname, oski_ataop_t op) |
Print matrix-transpose option. |
|
Returns 0 <==> the given source string does not match any of a list of possible strings.
|