Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

macros.h 237 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
  1. #pragma once
  2. #if defined(_WIN32) && !defined(TORCHVISION_BUILD_STATIC_LIBS)
  3. #if defined(torchvision_EXPORTS)
  4. #define VISION_API __declspec(dllexport)
  5. #else
  6. #define VISION_API __declspec(dllimport)
  7. #endif
  8. #else
  9. #define VISION_API
  10. #endif
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...