Blame view

3rdparty/boost_1_81_0/libs/numeric/ublas/opencl.jam 2.78 KB
73ef4ff3   Hu Chunming   提交三方库
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
  # Copyright (c) 2018 Stefan Seefeld
  #
  # Use, modification and distribution is subject to the Boost Software
  # License Version 1.0. (See accompanying file LICENSE_1_0.txt or
  # http://www.boost.org/LICENSE_1_0.txt)
  
  # Supports the opencl library
  #
  # After 'using opencl', the following targets are available:
  #
  # /opencl//opencl -- The OpenCL library
  
  import project ;
  import ac ;
  import errors ;
  import feature ;
  import "class" : new ;
  import targets ; 
  import modules ;
  import property-set ;
  
  header = CL/cl.h ;
  names = OpenCL ;
  
  library-id = 0 ;
  
  if --debug-configuration in [ modules.peek : ARGV ]
  {
      .debug =  true ;
  }
  
  # Initializes the opencl library.
  #
  # Options for configuring opencl::
  #
  #   <search>
  #       The directory containing the OpenCL library.
  #   <name>
  #       Overrides the default library name.
  #   <include>
  #       The directory containing the OpenCL headers.
  #
  # Examples::
  #
  #   # Find OpenCL in the default system location
  #   using opencl ;
  #   # Find opencl in /usr/local
  #   using opencl : 1.2.7
  #     : <include>/usr/local/include <search>/usr/local/lib ;
  #
  rule init ( version ? : # The opencl version (currently ignored)
              options * : # A list of the options to use
              requirements * ) # The requirements for the opencl target
  {
      local caller = [ project.current ] ;
  
      if ! $(.initialized)
      {
          .initialized = true ;
  
          project.initialize $(__name__) ;
          .project = [ project.current ] ;
          project opencl ;
      }
  
      local library-path = [ feature.get-values <search> : $(options) ] ;
      local include-path = [ feature.get-values <include> : $(options) ] ;
      local library-name = [ feature.get-values <name> : $(options) ] ;
  
      if ! $(library-path) && ! $(include-path) && ! $(library-name)
      {
          is-default = true ;
      }
  
      condition = [ property-set.create $(requirements) ] ;
      condition = [ property-set.create [ $(condition).base ] ] ;
  
      if $(.configured.$(condition))
      {
          if $(is-default)
          {
              if $(.debug)
              {
                  ECHO "notice: [opencl] opencl is already configured" ;
              }
          }
          else
          {
              errors.user-error "opencl is already configured" ;
          }
          return ;
      }
      else
      {
          if $(.debug)
          {
              ECHO "notice: [opencl] Using pre-installed library" ;
              if $(condition)
              {
                  ECHO "notice: [opencl] Condition" [ $(condition).raw ] ;
              }
          }
  
          local mt = [ new ac-library opencl : $(.project) : $(condition) :
              $(include-path) : $(library-path) : $(library-name) ] ;
          $(mt).set-header $(header) ;
          $(mt).set-default-names $(names) ;
          targets.main-target-alternative $(mt) ;
      }
      .configured.$(condition) = true ;
  }