Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions interface.md

This file was deleted.

53 changes: 0 additions & 53 deletions operations.md

This file was deleted.

105 changes: 0 additions & 105 deletions proposal1.md

This file was deleted.

96 changes: 0 additions & 96 deletions proposal2a.md

This file was deleted.

46 changes: 0 additions & 46 deletions proposal2b.md

This file was deleted.

16 changes: 8 additions & 8 deletions src/tapp.h
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#ifndef TAPP_TAPP_H_
#define TAPP_TAPP_H_

#include "tapp/error.h"
#include "tapp/attributes.h"
#include "tapp/datatype.h"
#include "tapp/handle.h"
#include "tapp/executor.h"
#include "tapp/status.h"
#include "tapp/tensor.h"
#include "tapp/product.h"
#include "tapp/tapp_error.h"
#include "tapp/tapp_attributes.h"
#include "tapp/tapp_datatype.h"
#include "tapp/tapp_handle.h"
#include "tapp/tapp_executor.h"
#include "tapp/tapp_status.h"
#include "tapp/tapp_tensor.h"
#include "tapp/tapp_product.h"

#endif /* TAPP_TAPP_H_ */
2 changes: 1 addition & 1 deletion src/tapp/attributes.h → src/tapp/tapp_attributes.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#include "error.h"
#include "tapp_error.h"

typedef intptr_t TAPP_attr;
typedef int TAPP_key;
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/tapp/executor.h → src/tapp/tapp_executor.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <stdint.h>

#include "error.h"
#include "tapp_error.h"

typedef intptr_t TAPP_executor;

Expand Down
Loading