File tree 12 files changed +64
-11
lines changed
12 files changed +64
-11
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (C) 2024 Intel Corporation
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing,
11
+ * software distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions
14
+ * and limitations under the License.
15
+ *
16
+ * SPDX-License-Identifier: Apache-2.0
17
+ */
18
+
1
19
#ifndef GC_VERSION_H
2
20
#define GC_VERSION_H
3
21
Original file line number Diff line number Diff line change 1
- // ===- LinalgxDialect.h - linalgx dialect --- --------------------*- C++ -*-===//
1
+ // ===-- LinalgxDialect.cpp - linalgx dialect --------------------*- C++ -*-===//
2
2
//
3
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change 1
- // ===- LinalgxOps.h - linalgx dialect ops --- --------------------*- C++ -*-===//
1
+ // ===-- LinalgxOps.cpp - linalgx dialect ops --------------------*- C++ -*-===//
2
2
//
3
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change 1
- // ===- MicrokernelDialect.h - microkernel dialect --- ------------*- C++ -*-===//
1
+ // ===-- MicrokernelDialect.cpp - microkernel dialect ------------*- C++ -*-===//
2
2
//
3
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change 1
- // ===- MicrokernelOps.h - microkernel dialect ops --- ------------*- C++ -*-===//
1
+ // ===-- MicrokernelOps.cpp - microkernel dialect ops ------------*- C++ -*-===//
2
2
//
3
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change 1
- // ===- OneDNNGraphDialect.h - OneDNN input dialect --- -----------*- C++ -*-===//
1
+ // ===-- OneDNNGraphDialect.cpp - OneDNN input dialect -----------*- C++ -*-===//
2
2
//
3
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change 1
- // ===- OneDNNGraphOps.h - OneDNN input dialect ops --- -----------*- C++ -*-===//
1
+ // ===-- OneDNNGraphOps.cpp - OneDNN input dialect ops -----------*- C++ -*-===//
2
2
//
3
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change 1
- // ===- OneDNNGraphToLinalg.cpp - OneDNN Graph To Linalg Lowering --*- C++ -*-=//
2
- // -*-===//
1
+ // ===- OneDNNGraphToLinalg.cpp - OneDNNGraph To Linalg Lowering -*- C++ -*-===//
3
2
//
4
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
5
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change 1
- // ===- TileNamed.cpp - Tile Named Linalg Ops - -------------------*- C++ -*-===//
1
+ // ===-- TileNamed.cpp - Tile Named Linalg Ops -------------------*- C++ -*-===//
2
2
//
3
3
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (C) 2024 Intel Corporation
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing,
11
+ * software distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions
14
+ * and limitations under the License.
15
+ *
16
+ * SPDX-License-Identifier: Apache-2.0
17
+ */
18
+
1
19
#include < filesystem>
2
20
#include < fstream>
3
21
#include < sstream>
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (C) 2024 Intel Corporation
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing,
11
+ * software distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions
14
+ * and limitations under the License.
15
+ *
16
+ * SPDX-License-Identifier: Apache-2.0
17
+ */
18
+
1
19
#include " dnnl_graph_compiler.h"
2
20
#include " dnnl_test_utils.hpp"
3
21
#include " gc_version.h"
Original file line number Diff line number Diff line change 1
- // ===- Example.cpp - Tests for Example ----------------------------------- -===//
1
+ // ===-- Example.cpp - Tests for Example -------------------------*- C++ -* -===//
2
2
//
3
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3
+ // This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
You can’t perform that action at this time.
0 commit comments