featomic-torch 0.7.2__py3-none-win_amd64.whl → 0.7.3__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- featomic/torch/torch-2.10/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.10/include/featomic/torch/autograd.hpp +58 -0
- featomic/torch/torch-2.10/include/featomic/torch/calculator.hpp +134 -0
- featomic/torch/torch-2.10/include/featomic/torch/exports.h +43 -0
- featomic/torch/torch-2.10/include/featomic/torch/system.hpp +112 -0
- featomic/torch/torch-2.10/include/featomic/torch.hpp +10 -0
- featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +85 -0
- featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-config.cmake +32 -0
- featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake +19 -0
- featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-targets.cmake +108 -0
- featomic/torch/torch-2.10/lib/featomic_torch.lib +0 -0
- featomic/torch/torch-2.3/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.3/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +3 -3
- featomic/torch/torch-2.3/lib/featomic_torch.lib +0 -0
- featomic/torch/torch-2.4/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.4/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +3 -3
- featomic/torch/torch-2.4/lib/featomic_torch.lib +0 -0
- featomic/torch/torch-2.5/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.5/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +3 -3
- featomic/torch/torch-2.5/lib/featomic_torch.lib +0 -0
- featomic/torch/torch-2.6/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.6/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +3 -3
- featomic/torch/torch-2.6/lib/featomic_torch.lib +0 -0
- featomic/torch/torch-2.7/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.7/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +3 -3
- featomic/torch/torch-2.7/lib/featomic_torch.lib +0 -0
- featomic/torch/torch-2.8/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.8/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +3 -3
- featomic/torch/torch-2.8/lib/featomic_torch.lib +0 -0
- featomic/torch/torch-2.9/bin/featomic_torch.dll +0 -0
- featomic/torch/torch-2.9/lib/cmake/featomic_torch/featomic_torch-config-version.cmake +3 -3
- featomic/torch/torch-2.9/lib/featomic_torch.lib +0 -0
- {featomic_torch-0.7.2.dist-info → featomic_torch-0.7.3.dist-info}/METADATA +2 -2
- {featomic_torch-0.7.2.dist-info → featomic_torch-0.7.3.dist-info}/RECORD +38 -27
- {featomic_torch-0.7.2.dist-info → featomic_torch-0.7.3.dist-info}/WHEEL +1 -1
- {featomic_torch-0.7.2.dist-info → featomic_torch-0.7.3.dist-info}/licenses/AUTHORS +0 -0
- {featomic_torch-0.7.2.dist-info → featomic_torch-0.7.3.dist-info}/licenses/LICENSE +0 -0
- {featomic_torch-0.7.2.dist-info → featomic_torch-0.7.3.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
// IWYU pragma: private; include "featomic/torch.hpp"
|
|
2
|
+
|
|
3
|
+
#ifndef FEATOMIC_TORCH_AUTOGRAD_HPP
|
|
4
|
+
#define FEATOMIC_TORCH_AUTOGRAD_HPP
|
|
5
|
+
|
|
6
|
+
#include <ATen/core/ivalue.h>
|
|
7
|
+
#include <torch/autograd.h>
|
|
8
|
+
|
|
9
|
+
#include <metatensor/torch.hpp>
|
|
10
|
+
|
|
11
|
+
#include "featomic/torch/exports.h"
|
|
12
|
+
|
|
13
|
+
namespace featomic_torch {
|
|
14
|
+
|
|
15
|
+
/// Custom torch::autograd::Function integrating featomic with torch autograd.
|
|
16
|
+
///
|
|
17
|
+
/// This is a bit more complex than your typical autograd because there is some
|
|
18
|
+
/// impedance mismatch between featomic and torch. Most of it should be taken
|
|
19
|
+
/// care of by the `compute` function below.
|
|
20
|
+
class FEATOMIC_TORCH_EXPORT FeatomicAutograd: public torch::autograd::Function<FeatomicAutograd> {
|
|
21
|
+
public:
|
|
22
|
+
/// Register a pseudo node in Torch's computational graph going from
|
|
23
|
+
/// `all_positions` and `all_cell` to the values in `block`; using the
|
|
24
|
+
/// pre-computed gradients in `block`.
|
|
25
|
+
///
|
|
26
|
+
/// If `all_positions.requires_grad` is True, `block` must have a
|
|
27
|
+
/// `"positions"` gradient; and `systems_start` should contain the index of
|
|
28
|
+
/// the first atom of each system in `all_positions`.
|
|
29
|
+
///
|
|
30
|
+
/// If `all_cells.requires_grad` is True, `block` must have a `"cell"`
|
|
31
|
+
/// gradient, and the block samples must contain a `"stucture"` dimension.
|
|
32
|
+
///
|
|
33
|
+
/// This function returns a vector with one element corresponding to
|
|
34
|
+
/// `block.values`, which should be left unused. It is only there to make
|
|
35
|
+
/// sure torch registers a `grad_fn` for the tensors stored inside the
|
|
36
|
+
/// TensorBlock (the values in the TensorBlock are references to the ones
|
|
37
|
+
/// returned by this function, so when a `grad_fn` is added to one, it is
|
|
38
|
+
/// also added to the other).
|
|
39
|
+
static std::vector<torch::Tensor> forward(
|
|
40
|
+
torch::autograd::AutogradContext *ctx,
|
|
41
|
+
torch::Tensor all_positions,
|
|
42
|
+
torch::Tensor all_cells,
|
|
43
|
+
torch::IValue systems_start,
|
|
44
|
+
metatensor_torch::TensorBlock block
|
|
45
|
+
);
|
|
46
|
+
|
|
47
|
+
/// Backward step: get the gradients of some quantity `A` w.r.t. the outputs
|
|
48
|
+
/// of `forward`; and compute the gradients of the same quantity `A` w.r.t.
|
|
49
|
+
/// the inputs of `forward` (i.e. cell and positions).
|
|
50
|
+
static std::vector<torch::Tensor> backward(
|
|
51
|
+
torch::autograd::AutogradContext *ctx,
|
|
52
|
+
std::vector<torch::Tensor> grad_outputs
|
|
53
|
+
);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
#endif
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
#ifndef FEATOMIC_TORCH_CALCULATOR_HPP
|
|
2
|
+
#define FEATOMIC_TORCH_CALCULATOR_HPP
|
|
3
|
+
|
|
4
|
+
#include <torch/script.h>
|
|
5
|
+
|
|
6
|
+
#include <featomic.hpp>
|
|
7
|
+
#include <metatensor/torch.hpp>
|
|
8
|
+
#include <metatomic/torch.hpp>
|
|
9
|
+
|
|
10
|
+
#include "featomic/torch/exports.h"
|
|
11
|
+
|
|
12
|
+
namespace featomic_torch {
|
|
13
|
+
class FeatomicAutograd;
|
|
14
|
+
|
|
15
|
+
class CalculatorHolder;
|
|
16
|
+
using TorchCalculator = torch::intrusive_ptr<CalculatorHolder>;
|
|
17
|
+
|
|
18
|
+
class CalculatorOptionsHolder;
|
|
19
|
+
using TorchCalculatorOptions = torch::intrusive_ptr<CalculatorOptionsHolder>;
|
|
20
|
+
|
|
21
|
+
/// Options for a single calculation
|
|
22
|
+
class FEATOMIC_TORCH_EXPORT CalculatorOptionsHolder: public torch::CustomClassHolder {
|
|
23
|
+
public:
|
|
24
|
+
/// get the current selected samples
|
|
25
|
+
torch::IValue selected_samples() const {
|
|
26
|
+
return selected_samples_;
|
|
27
|
+
}
|
|
28
|
+
/// Set the selected samples to `selection`.
|
|
29
|
+
///
|
|
30
|
+
/// The `IValue` can be `None` (no selection), an instance of
|
|
31
|
+
/// `metatensor_torch::TorchLabels`, or an instance of
|
|
32
|
+
/// `metatensor_torch::TorchTensorMap`.
|
|
33
|
+
void set_selected_samples(torch::IValue selection);
|
|
34
|
+
|
|
35
|
+
/// Get the selected samples in the format used by featomic
|
|
36
|
+
featomic::LabelsSelection selected_samples_featomic() const;
|
|
37
|
+
|
|
38
|
+
/// get the current selected properties
|
|
39
|
+
torch::IValue selected_properties() const {
|
|
40
|
+
return selected_properties_;
|
|
41
|
+
}
|
|
42
|
+
/// Set the selected properties to `selection`.
|
|
43
|
+
///
|
|
44
|
+
/// The `IValue` can be `None` (no selection), an instance of
|
|
45
|
+
/// `metatensor_torch::TorchLabels`, or an instance of
|
|
46
|
+
/// `metatensor_torch::TorchTensorMap`.
|
|
47
|
+
void set_selected_properties(torch::IValue selection);
|
|
48
|
+
|
|
49
|
+
/// Get the selected properties in the format used by featomic
|
|
50
|
+
featomic::LabelsSelection selected_properties_featomic() const;
|
|
51
|
+
|
|
52
|
+
/// get the current selected keys
|
|
53
|
+
torch::IValue selected_keys() const {
|
|
54
|
+
return selected_keys_;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/// Set the selected properties to `selection`.
|
|
58
|
+
///
|
|
59
|
+
/// The `IValue` can be `None` (no selection), or an instance of
|
|
60
|
+
/// `metatensor_torch::TorchLabels`.
|
|
61
|
+
void set_selected_keys(torch::IValue selection);
|
|
62
|
+
|
|
63
|
+
/// which gradients to keep in the output of a calculation
|
|
64
|
+
std::vector<std::string> gradients;
|
|
65
|
+
|
|
66
|
+
private:
|
|
67
|
+
torch::IValue selected_samples_;
|
|
68
|
+
torch::IValue selected_properties_;
|
|
69
|
+
torch::IValue selected_keys_;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
/// Custom class holder to store, serialize and load featomic calculators
|
|
73
|
+
/// inside Torch(Script) modules.
|
|
74
|
+
class FEATOMIC_TORCH_EXPORT CalculatorHolder: public torch::CustomClassHolder {
|
|
75
|
+
public:
|
|
76
|
+
/// Create a new calculator with the given `name` and JSON `parameters`
|
|
77
|
+
CalculatorHolder(std::string name, std::string parameters):
|
|
78
|
+
c_name_(std::move(name)),
|
|
79
|
+
calculator_(c_name_, std::move(parameters))
|
|
80
|
+
{}
|
|
81
|
+
|
|
82
|
+
/// Get the name of this calculator
|
|
83
|
+
std::string name() const {
|
|
84
|
+
return calculator_.name();
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/// Get the name used to register this calculator
|
|
88
|
+
std::string c_name() const {
|
|
89
|
+
return c_name_;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/// Get the parameters of this calculator
|
|
93
|
+
std::string parameters() const {
|
|
94
|
+
return calculator_.parameters();
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/// Get all radial cutoffs used by this `Calculator`'s neighbors lists
|
|
98
|
+
std::vector<double> cutoffs() const {
|
|
99
|
+
return calculator_.cutoffs();
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/// Run a calculation for the given `systems` using the given options.
|
|
103
|
+
metatensor_torch::TensorMap compute(
|
|
104
|
+
std::vector<metatomic_torch::System> systems,
|
|
105
|
+
TorchCalculatorOptions options = {}
|
|
106
|
+
);
|
|
107
|
+
|
|
108
|
+
private:
|
|
109
|
+
std::string c_name_;
|
|
110
|
+
featomic::Calculator calculator_;
|
|
111
|
+
};
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
/// Register autograd nodes between `system.positions` and `system.cell` for
|
|
115
|
+
/// each of the systems and the values in the `precomputed` TensorMap.
|
|
116
|
+
///
|
|
117
|
+
/// This is an advanced function must users should not need to use.
|
|
118
|
+
///
|
|
119
|
+
/// The autograd nodes `backward()` function will use the gradients already
|
|
120
|
+
/// stored in `precomputed`, meaning that if any of the system's positions
|
|
121
|
+
/// `requires_grad`, `precomputed` must contain `"positions"` gradients.
|
|
122
|
+
/// Similarly, if any of the system's cell `requires_grad`, `precomputed` must
|
|
123
|
+
/// contain `"cell"` gradients.
|
|
124
|
+
///
|
|
125
|
+
/// `forward_gradients` controls which gradients are left inside the TensorMap.
|
|
126
|
+
metatensor_torch::TensorMap FEATOMIC_TORCH_EXPORT register_autograd(
|
|
127
|
+
std::vector<metatomic_torch::System> systems,
|
|
128
|
+
metatensor_torch::TensorMap precomputed,
|
|
129
|
+
std::vector<std::string> forward_gradients
|
|
130
|
+
);
|
|
131
|
+
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
#endif
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
|
|
2
|
+
#ifndef FEATOMIC_TORCH_EXPORT_H
|
|
3
|
+
#define FEATOMIC_TORCH_EXPORT_H
|
|
4
|
+
|
|
5
|
+
#ifdef FEATOMIC_TORCH_STATIC_DEFINE
|
|
6
|
+
# define FEATOMIC_TORCH_EXPORT
|
|
7
|
+
# define FEATOMIC_TORCH_NO_EXPORT
|
|
8
|
+
#else
|
|
9
|
+
# ifndef FEATOMIC_TORCH_EXPORT
|
|
10
|
+
# ifdef featomic_torch_EXPORTS
|
|
11
|
+
/* We are building this library */
|
|
12
|
+
# define FEATOMIC_TORCH_EXPORT __declspec(dllexport)
|
|
13
|
+
# else
|
|
14
|
+
/* We are using this library */
|
|
15
|
+
# define FEATOMIC_TORCH_EXPORT __declspec(dllimport)
|
|
16
|
+
# endif
|
|
17
|
+
# endif
|
|
18
|
+
|
|
19
|
+
# ifndef FEATOMIC_TORCH_NO_EXPORT
|
|
20
|
+
# define FEATOMIC_TORCH_NO_EXPORT
|
|
21
|
+
# endif
|
|
22
|
+
#endif
|
|
23
|
+
|
|
24
|
+
#ifndef FEATOMIC_TORCH_DEPRECATED
|
|
25
|
+
# define FEATOMIC_TORCH_DEPRECATED __declspec(deprecated)
|
|
26
|
+
#endif
|
|
27
|
+
|
|
28
|
+
#ifndef FEATOMIC_TORCH_DEPRECATED_EXPORT
|
|
29
|
+
# define FEATOMIC_TORCH_DEPRECATED_EXPORT FEATOMIC_TORCH_EXPORT FEATOMIC_TORCH_DEPRECATED
|
|
30
|
+
#endif
|
|
31
|
+
|
|
32
|
+
#ifndef FEATOMIC_TORCH_DEPRECATED_NO_EXPORT
|
|
33
|
+
# define FEATOMIC_TORCH_DEPRECATED_NO_EXPORT FEATOMIC_TORCH_NO_EXPORT FEATOMIC_TORCH_DEPRECATED
|
|
34
|
+
#endif
|
|
35
|
+
|
|
36
|
+
/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
|
|
37
|
+
#if 0 /* DEFINE_NO_DEPRECATED */
|
|
38
|
+
# ifndef FEATOMIC_TORCH_NO_DEPRECATED
|
|
39
|
+
# define FEATOMIC_TORCH_NO_DEPRECATED
|
|
40
|
+
# endif
|
|
41
|
+
#endif
|
|
42
|
+
|
|
43
|
+
#endif /* FEATOMIC_TORCH_EXPORT_H */
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
#ifndef FEATOMIC_TORCH_SYSTEM_HPP
|
|
2
|
+
#define FEATOMIC_TORCH_SYSTEM_HPP
|
|
3
|
+
|
|
4
|
+
#include <vector>
|
|
5
|
+
#include <map>
|
|
6
|
+
|
|
7
|
+
#include <torch/script.h>
|
|
8
|
+
|
|
9
|
+
#include <featomic.hpp>
|
|
10
|
+
#include <metatomic/torch.hpp>
|
|
11
|
+
|
|
12
|
+
#include "featomic/torch/exports.h"
|
|
13
|
+
|
|
14
|
+
namespace featomic_torch {
|
|
15
|
+
|
|
16
|
+
/// Implementation of `featomic::System` using `metatomic_torch::System` as
|
|
17
|
+
/// backing memory for all the data.
|
|
18
|
+
///
|
|
19
|
+
/// This can either be used with the Rust neighbor list implementation; or a set
|
|
20
|
+
/// of pre-computed neighbor lists can be added to the system.
|
|
21
|
+
class FEATOMIC_TORCH_EXPORT SystemAdapter final: public featomic::System {
|
|
22
|
+
public:
|
|
23
|
+
/// Create a `SystemAdapter` wrapping an existing `metatomic_torch::System`
|
|
24
|
+
SystemAdapter(metatomic_torch::System system);
|
|
25
|
+
|
|
26
|
+
~SystemAdapter() override = default;
|
|
27
|
+
|
|
28
|
+
/// `SystemAdapter` is copy-constructible
|
|
29
|
+
SystemAdapter(const SystemAdapter&) = default;
|
|
30
|
+
/// `SystemAdapter` is move-constructible
|
|
31
|
+
SystemAdapter(SystemAdapter&&) = default;
|
|
32
|
+
|
|
33
|
+
/// `SystemAdapter` can be copy-assigned
|
|
34
|
+
SystemAdapter& operator=(const SystemAdapter&) = default;
|
|
35
|
+
/// `SystemAdapter` can be move-assigned
|
|
36
|
+
SystemAdapter& operator=(SystemAdapter&&) = default;
|
|
37
|
+
|
|
38
|
+
/*========================================================================*/
|
|
39
|
+
/* Functions to implement featomic::System */
|
|
40
|
+
/*========================================================================*/
|
|
41
|
+
|
|
42
|
+
/// @private
|
|
43
|
+
uintptr_t size() const override {
|
|
44
|
+
return static_cast<uintptr_t>(types_.size(0));
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/// @private
|
|
48
|
+
const int32_t* types() const override {
|
|
49
|
+
return types_.data_ptr<int32_t>();
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/// @private
|
|
53
|
+
const double* positions() const override {
|
|
54
|
+
return positions_.data_ptr<double>();
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/// @private
|
|
58
|
+
CellMatrix cell() const override {
|
|
59
|
+
auto* data = cell_.data_ptr<double>();
|
|
60
|
+
return CellMatrix{{
|
|
61
|
+
{{data[0], data[1], data[2]}},
|
|
62
|
+
{{data[3], data[4], data[5]}},
|
|
63
|
+
{{data[6], data[7], data[8]}},
|
|
64
|
+
}};
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/// @private
|
|
68
|
+
void compute_neighbors(double cutoff) override;
|
|
69
|
+
|
|
70
|
+
/// @private
|
|
71
|
+
const std::vector<featomic_pair_t>& pairs() const override;
|
|
72
|
+
|
|
73
|
+
/// @private
|
|
74
|
+
const std::vector<featomic_pair_t>& pairs_containing(uintptr_t atom) const override;
|
|
75
|
+
|
|
76
|
+
/*========================================================================*/
|
|
77
|
+
/* Functions to re-use pre-computed pairs */
|
|
78
|
+
/*========================================================================*/
|
|
79
|
+
|
|
80
|
+
/// Should we copy data to featomic internal data structure and compute the
|
|
81
|
+
/// neighbor list there? This is set to `true` by default, or `false` if
|
|
82
|
+
/// a neighbor list has been added with `set_precomputed_pairs`.
|
|
83
|
+
bool use_native_system() const;
|
|
84
|
+
|
|
85
|
+
private:
|
|
86
|
+
// the origin of all the data
|
|
87
|
+
metatomic_torch::System system_;
|
|
88
|
+
|
|
89
|
+
/// atomic types tensor, contiguous and on CPU
|
|
90
|
+
torch::Tensor types_;
|
|
91
|
+
/// positions tensor, contiguous, on CPU and with dtype=float64
|
|
92
|
+
torch::Tensor positions_;
|
|
93
|
+
/// cell tensor, contiguous, on CPU and with dtype=float64
|
|
94
|
+
torch::Tensor cell_;
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
struct PrecomputedPairs {
|
|
98
|
+
std::vector<featomic_pair_t> pairs_;
|
|
99
|
+
std::vector<std::vector<featomic_pair_t>> pairs_by_atom_;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
void set_precomputed_pairs(double cutoff, std::vector<featomic_pair_t> pairs);
|
|
103
|
+
|
|
104
|
+
// all precomputed pairs we know about
|
|
105
|
+
std::map<double, PrecomputedPairs> precomputed_pairs_;
|
|
106
|
+
// last custom requested by `compute_neighbors`
|
|
107
|
+
double last_cutoff_ = -1.0;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
#endif
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#ifndef FEATOMIC_TORCH_HPP
|
|
2
|
+
#define FEATOMIC_TORCH_HPP
|
|
3
|
+
|
|
4
|
+
#include "featomic/torch/exports.h" // IWYU pragma: export
|
|
5
|
+
|
|
6
|
+
#include "featomic/torch/system.hpp" // IWYU pragma: export
|
|
7
|
+
#include "featomic/torch/calculator.hpp" // IWYU pragma: export
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
#endif
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# This is a basic version file for the Config-mode of find_package().
|
|
2
|
+
# It is used by write_basic_package_version_file() as input file for configure_file()
|
|
3
|
+
# to create a version-file which can be installed along a config.cmake file.
|
|
4
|
+
#
|
|
5
|
+
# The created file sets PACKAGE_VERSION_EXACT if the current version string and
|
|
6
|
+
# the requested version string are exactly the same and it sets
|
|
7
|
+
# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
|
|
8
|
+
# but only if the requested major and minor versions are the same as the current
|
|
9
|
+
# one.
|
|
10
|
+
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
|
+
|
|
15
|
+
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
|
+
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
|
+
else()
|
|
18
|
+
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
|
+
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
|
+
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
|
+
|
|
23
|
+
if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
|
|
24
|
+
string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
|
|
25
|
+
endif()
|
|
26
|
+
if(NOT CVF_VERSION_MINOR VERSION_EQUAL 0)
|
|
27
|
+
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
|
+
endif()
|
|
29
|
+
else()
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
|
+
set(CVF_VERSION_MINOR "")
|
|
32
|
+
endif()
|
|
33
|
+
|
|
34
|
+
if(PACKAGE_FIND_VERSION_RANGE)
|
|
35
|
+
# both endpoints of the range must have the expected major and minor versions
|
|
36
|
+
math (EXPR CVF_VERSION_MINOR_NEXT "${CVF_VERSION_MINOR} + 1")
|
|
37
|
+
if (NOT (PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
|
|
38
|
+
AND PACKAGE_FIND_VERSION_MIN_MINOR STREQUAL CVF_VERSION_MINOR)
|
|
39
|
+
OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE"
|
|
40
|
+
AND NOT (PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR
|
|
41
|
+
AND PACKAGE_FIND_VERSION_MAX_MINOR STREQUAL CVF_VERSION_MINOR))
|
|
42
|
+
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE"
|
|
43
|
+
AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL ${CVF_VERSION_MAJOR}.${CVF_VERSION_MINOR_NEXT})))
|
|
44
|
+
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
45
|
+
elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
|
|
46
|
+
AND PACKAGE_FIND_VERSION_MIN_MINOR STREQUAL CVF_VERSION_MINOR
|
|
47
|
+
AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX)
|
|
48
|
+
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX)))
|
|
49
|
+
set(PACKAGE_VERSION_COMPATIBLE TRUE)
|
|
50
|
+
else()
|
|
51
|
+
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
52
|
+
endif()
|
|
53
|
+
else()
|
|
54
|
+
if(NOT PACKAGE_FIND_VERSION_MAJOR VERSION_EQUAL 0)
|
|
55
|
+
string(REGEX REPLACE "^0+" "" PACKAGE_FIND_VERSION_MAJOR "${PACKAGE_FIND_VERSION_MAJOR}")
|
|
56
|
+
endif()
|
|
57
|
+
if(NOT PACKAGE_FIND_VERSION_MINOR VERSION_EQUAL 0)
|
|
58
|
+
string(REGEX REPLACE "^0+" "" PACKAGE_FIND_VERSION_MINOR "${PACKAGE_FIND_VERSION_MINOR}")
|
|
59
|
+
endif()
|
|
60
|
+
|
|
61
|
+
if((PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) AND
|
|
62
|
+
(PACKAGE_FIND_VERSION_MINOR STREQUAL CVF_VERSION_MINOR))
|
|
63
|
+
set(PACKAGE_VERSION_COMPATIBLE TRUE)
|
|
64
|
+
else()
|
|
65
|
+
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
66
|
+
endif()
|
|
67
|
+
|
|
68
|
+
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
|
|
69
|
+
set(PACKAGE_VERSION_EXACT TRUE)
|
|
70
|
+
endif()
|
|
71
|
+
endif()
|
|
72
|
+
endif()
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
|
|
76
|
+
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
|
|
77
|
+
return()
|
|
78
|
+
endif()
|
|
79
|
+
|
|
80
|
+
# check that the installed version has the same 32/64bit-ness as the one which is currently searching:
|
|
81
|
+
if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
|
|
82
|
+
math(EXPR installedBits "8 * 8")
|
|
83
|
+
set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
|
|
84
|
+
set(PACKAGE_VERSION_UNSUITABLE TRUE)
|
|
85
|
+
endif()
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
include(CMakeFindDependencyMacro)
|
|
2
|
+
|
|
3
|
+
# use the same version for featomic as the main CMakeLists.txt
|
|
4
|
+
set(REQUIRED_FEATOMIC_VERSION 0.6)
|
|
5
|
+
find_package(featomic ${REQUIRED_FEATOMIC_VERSION} CONFIG REQUIRED)
|
|
6
|
+
|
|
7
|
+
# use the same version for metatensor_torch as the main CMakeLists.txt
|
|
8
|
+
set(REQUIRED_METATENSOR_TORCH_VERSION 0.8.0)
|
|
9
|
+
find_package(metatensor_torch ${REQUIRED_METATENSOR_TORCH_VERSION} CONFIG REQUIRED)
|
|
10
|
+
|
|
11
|
+
# use the same version for metatomic_torch as the main CMakeLists.txt
|
|
12
|
+
set(REQUIRED_METATOMIC_TORCH_VERSION 0.1)
|
|
13
|
+
find_package(metatomic_torch ${REQUIRED_METATOMIC_TORCH_VERSION} CONFIG REQUIRED)
|
|
14
|
+
|
|
15
|
+
# We can only load metatensorfeatomic_torch with the same minor version of Torch
|
|
16
|
+
# that was used to compile it (and is stored in BUILD_TORCH_VERSION)
|
|
17
|
+
set(BUILD_TORCH_VERSION 2.10.0)
|
|
18
|
+
set(BUILD_TORCH_MAJOR 2)
|
|
19
|
+
set(BUILD_TORCH_MINOR 10)
|
|
20
|
+
|
|
21
|
+
find_package(Torch ${BUILD_TORCH_VERSION} REQUIRED)
|
|
22
|
+
|
|
23
|
+
if (NOT "${BUILD_TORCH_MAJOR}" STREQUAL "${Torch_VERSION_MAJOR}")
|
|
24
|
+
message(FATAL_ERROR "found incompatible torch version: featomic-torch was built against v${BUILD_TORCH_VERSION} but we found v${Torch_VERSION}")
|
|
25
|
+
endif()
|
|
26
|
+
|
|
27
|
+
if (NOT "${BUILD_TORCH_MINOR}" STREQUAL "${Torch_VERSION_MINOR}")
|
|
28
|
+
message(FATAL_ERROR "found incompatible torch version: featomic-torch was built against v${BUILD_TORCH_VERSION} but we found v${Torch_VERSION}")
|
|
29
|
+
endif()
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
include(${CMAKE_CURRENT_LIST_DIR}/featomic_torch-targets.cmake)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#----------------------------------------------------------------
|
|
2
|
+
# Generated CMake target import file for configuration "Release".
|
|
3
|
+
#----------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
# Commands may need to know the format version.
|
|
6
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
7
|
+
|
|
8
|
+
# Import target "featomic_torch" for configuration "Release"
|
|
9
|
+
set_property(TARGET featomic_torch APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
|
10
|
+
set_target_properties(featomic_torch PROPERTIES
|
|
11
|
+
IMPORTED_IMPLIB_RELEASE "${_IMPORT_PREFIX}/lib/featomic_torch.lib"
|
|
12
|
+
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/featomic_torch.dll"
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
list(APPEND _cmake_import_check_targets featomic_torch )
|
|
16
|
+
list(APPEND _cmake_import_check_files_for_featomic_torch "${_IMPORT_PREFIX}/lib/featomic_torch.lib" "${_IMPORT_PREFIX}/bin/featomic_torch.dll" )
|
|
17
|
+
|
|
18
|
+
# Commands beyond this point should not need to know the version.
|
|
19
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# Generated by CMake
|
|
2
|
+
|
|
3
|
+
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
|
|
4
|
+
message(FATAL_ERROR "CMake >= 2.8.12 required")
|
|
5
|
+
endif()
|
|
6
|
+
if(CMAKE_VERSION VERSION_LESS "2.8.12")
|
|
7
|
+
message(FATAL_ERROR "CMake >= 2.8.12 required")
|
|
8
|
+
endif()
|
|
9
|
+
cmake_policy(PUSH)
|
|
10
|
+
cmake_policy(VERSION 2.8.12...4.0)
|
|
11
|
+
#----------------------------------------------------------------
|
|
12
|
+
# Generated CMake target import file.
|
|
13
|
+
#----------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
# Commands may need to know the format version.
|
|
16
|
+
set(CMAKE_IMPORT_FILE_VERSION 1)
|
|
17
|
+
|
|
18
|
+
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
|
19
|
+
set(_cmake_targets_defined "")
|
|
20
|
+
set(_cmake_targets_not_defined "")
|
|
21
|
+
set(_cmake_expected_targets "")
|
|
22
|
+
foreach(_cmake_expected_target IN ITEMS featomic_torch)
|
|
23
|
+
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
|
|
24
|
+
if(TARGET "${_cmake_expected_target}")
|
|
25
|
+
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
|
|
26
|
+
else()
|
|
27
|
+
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
|
|
28
|
+
endif()
|
|
29
|
+
endforeach()
|
|
30
|
+
unset(_cmake_expected_target)
|
|
31
|
+
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
|
|
32
|
+
unset(_cmake_targets_defined)
|
|
33
|
+
unset(_cmake_targets_not_defined)
|
|
34
|
+
unset(_cmake_expected_targets)
|
|
35
|
+
unset(CMAKE_IMPORT_FILE_VERSION)
|
|
36
|
+
cmake_policy(POP)
|
|
37
|
+
return()
|
|
38
|
+
endif()
|
|
39
|
+
if(NOT _cmake_targets_defined STREQUAL "")
|
|
40
|
+
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
|
|
41
|
+
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
|
|
42
|
+
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
|
|
43
|
+
endif()
|
|
44
|
+
unset(_cmake_targets_defined)
|
|
45
|
+
unset(_cmake_targets_not_defined)
|
|
46
|
+
unset(_cmake_expected_targets)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# Compute the installation prefix relative to this file.
|
|
50
|
+
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
51
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
52
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
53
|
+
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
|
54
|
+
if(_IMPORT_PREFIX STREQUAL "/")
|
|
55
|
+
set(_IMPORT_PREFIX "")
|
|
56
|
+
endif()
|
|
57
|
+
|
|
58
|
+
# Create imported target featomic_torch
|
|
59
|
+
add_library(featomic_torch SHARED IMPORTED)
|
|
60
|
+
|
|
61
|
+
set_target_properties(featomic_torch PROPERTIES
|
|
62
|
+
INTERFACE_COMPILE_FEATURES "cxx_std_17"
|
|
63
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
64
|
+
INTERFACE_LINK_LIBRARIES "torch;metatomic_torch;metatensor_torch;featomic::shared"
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
# Load information for each installed configuration.
|
|
68
|
+
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/featomic_torch-targets-*.cmake")
|
|
69
|
+
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
|
70
|
+
include("${_cmake_config_file}")
|
|
71
|
+
endforeach()
|
|
72
|
+
unset(_cmake_config_file)
|
|
73
|
+
unset(_cmake_config_files)
|
|
74
|
+
|
|
75
|
+
# Cleanup temporary variables.
|
|
76
|
+
set(_IMPORT_PREFIX)
|
|
77
|
+
|
|
78
|
+
# Loop over all imported files and verify that they actually exist
|
|
79
|
+
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
|
80
|
+
if(CMAKE_VERSION VERSION_LESS "3.28"
|
|
81
|
+
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
|
|
82
|
+
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
|
|
83
|
+
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
|
84
|
+
if(NOT EXISTS "${_cmake_file}")
|
|
85
|
+
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
|
86
|
+
\"${_cmake_file}\"
|
|
87
|
+
but this file does not exist. Possible reasons include:
|
|
88
|
+
* The file was deleted, renamed, or moved to another location.
|
|
89
|
+
* An install or uninstall procedure did not complete successfully.
|
|
90
|
+
* The installation package was faulty and contained
|
|
91
|
+
\"${CMAKE_CURRENT_LIST_FILE}\"
|
|
92
|
+
but not all the files it references.
|
|
93
|
+
")
|
|
94
|
+
endif()
|
|
95
|
+
endforeach()
|
|
96
|
+
endif()
|
|
97
|
+
unset(_cmake_file)
|
|
98
|
+
unset("_cmake_import_check_files_for_${_cmake_target}")
|
|
99
|
+
endforeach()
|
|
100
|
+
unset(_cmake_target)
|
|
101
|
+
unset(_cmake_import_check_targets)
|
|
102
|
+
|
|
103
|
+
# This file does not depend on other imported targets which have
|
|
104
|
+
# been exported from the same project but in a separate export set.
|
|
105
|
+
|
|
106
|
+
# Commands beyond this point should not need to know the version.
|
|
107
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
108
|
+
cmake_policy(POP)
|
|
Binary file
|
|
Binary file
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
set(PACKAGE_VERSION "0.7.
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
14
|
|
|
15
15
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
16
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
17
|
else()
|
|
18
18
|
|
|
19
|
-
if("0.7.
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
20
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
21
|
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
22
|
|
|
@@ -27,7 +27,7 @@ else()
|
|
|
27
27
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
28
|
endif()
|
|
29
29
|
else()
|
|
30
|
-
set(CVF_VERSION_MAJOR "0.7.
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
31
|
set(CVF_VERSION_MINOR "")
|
|
32
32
|
endif()
|
|
33
33
|
|
|
Binary file
|
|
Binary file
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
set(PACKAGE_VERSION "0.7.
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
14
|
|
|
15
15
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
16
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
17
|
else()
|
|
18
18
|
|
|
19
|
-
if("0.7.
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
20
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
21
|
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
22
|
|
|
@@ -27,7 +27,7 @@ else()
|
|
|
27
27
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
28
|
endif()
|
|
29
29
|
else()
|
|
30
|
-
set(CVF_VERSION_MAJOR "0.7.
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
31
|
set(CVF_VERSION_MINOR "")
|
|
32
32
|
endif()
|
|
33
33
|
|
|
Binary file
|
|
Binary file
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
set(PACKAGE_VERSION "0.7.
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
14
|
|
|
15
15
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
16
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
17
|
else()
|
|
18
18
|
|
|
19
|
-
if("0.7.
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
20
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
21
|
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
22
|
|
|
@@ -27,7 +27,7 @@ else()
|
|
|
27
27
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
28
|
endif()
|
|
29
29
|
else()
|
|
30
|
-
set(CVF_VERSION_MAJOR "0.7.
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
31
|
set(CVF_VERSION_MINOR "")
|
|
32
32
|
endif()
|
|
33
33
|
|
|
Binary file
|
|
Binary file
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
set(PACKAGE_VERSION "0.7.
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
14
|
|
|
15
15
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
16
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
17
|
else()
|
|
18
18
|
|
|
19
|
-
if("0.7.
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
20
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
21
|
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
22
|
|
|
@@ -27,7 +27,7 @@ else()
|
|
|
27
27
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
28
|
endif()
|
|
29
29
|
else()
|
|
30
|
-
set(CVF_VERSION_MAJOR "0.7.
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
31
|
set(CVF_VERSION_MINOR "")
|
|
32
32
|
endif()
|
|
33
33
|
|
|
Binary file
|
|
Binary file
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
set(PACKAGE_VERSION "0.7.
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
14
|
|
|
15
15
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
16
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
17
|
else()
|
|
18
18
|
|
|
19
|
-
if("0.7.
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
20
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
21
|
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
22
|
|
|
@@ -27,7 +27,7 @@ else()
|
|
|
27
27
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
28
|
endif()
|
|
29
29
|
else()
|
|
30
|
-
set(CVF_VERSION_MAJOR "0.7.
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
31
|
set(CVF_VERSION_MINOR "")
|
|
32
32
|
endif()
|
|
33
33
|
|
|
Binary file
|
|
Binary file
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
set(PACKAGE_VERSION "0.7.
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
14
|
|
|
15
15
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
16
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
17
|
else()
|
|
18
18
|
|
|
19
|
-
if("0.7.
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
20
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
21
|
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
22
|
|
|
@@ -27,7 +27,7 @@ else()
|
|
|
27
27
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
28
|
endif()
|
|
29
29
|
else()
|
|
30
|
-
set(CVF_VERSION_MAJOR "0.7.
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
31
|
set(CVF_VERSION_MINOR "")
|
|
32
32
|
endif()
|
|
33
33
|
|
|
Binary file
|
|
Binary file
|
|
@@ -10,13 +10,13 @@
|
|
|
10
10
|
# The variable CVF_VERSION must be set before calling configure_file().
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
set(PACKAGE_VERSION "0.7.
|
|
13
|
+
set(PACKAGE_VERSION "0.7.3")
|
|
14
14
|
|
|
15
15
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
|
16
16
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
|
17
17
|
else()
|
|
18
18
|
|
|
19
|
-
if("0.7.
|
|
19
|
+
if("0.7.3" MATCHES "^([0-9]+)\\.([0-9]+)")
|
|
20
20
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
|
21
21
|
set(CVF_VERSION_MINOR "${CMAKE_MATCH_2}")
|
|
22
22
|
|
|
@@ -27,7 +27,7 @@ else()
|
|
|
27
27
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MINOR "${CVF_VERSION_MINOR}")
|
|
28
28
|
endif()
|
|
29
29
|
else()
|
|
30
|
-
set(CVF_VERSION_MAJOR "0.7.
|
|
30
|
+
set(CVF_VERSION_MAJOR "0.7.3")
|
|
31
31
|
set(CVF_VERSION_MINOR "")
|
|
32
32
|
endif()
|
|
33
33
|
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: featomic-torch
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: TorchScript bindings to featomic
|
|
5
5
|
Author: Guillaume Fraux, Philip Loche, Sergei Kliavinek, Kevin Kazuki Huguenin-Dumittan, Davide Tisi, Alexander Goscinski
|
|
6
6
|
License-Expression: BSD-3-Clause
|
|
@@ -25,7 +25,7 @@ Requires-Python: >=3.10
|
|
|
25
25
|
Description-Content-Type: text/x-rst
|
|
26
26
|
License-File: LICENSE
|
|
27
27
|
License-File: AUTHORS
|
|
28
|
-
Requires-Dist: torch >=2.3,<2.
|
|
28
|
+
Requires-Dist: torch >=2.3,<2.11
|
|
29
29
|
Requires-Dist: metatensor-torch<0.9,>=0.8.0
|
|
30
30
|
Requires-Dist: metatomic-torch<0.2,>=0.1.4
|
|
31
31
|
Requires-Dist: featomic<0.7,>=0.6.3
|
|
@@ -6,86 +6,97 @@ featomic/torch/calculators.py,sha256=0nR85JfjqvyIZacwcmRlyniR-9SAukJTLAFugFR0gaQ
|
|
|
6
6
|
featomic/torch/clebsch_gordan.py,sha256=0ztLbnMB2OwjYGj641lBKZmVP2sodOZoFOBc6UK1B_g,3124
|
|
7
7
|
featomic/torch/system.py,sha256=0META2Q3JVQ2EhJFDmtK8DQmmVxnKktI1mNipfdkCjg,2887
|
|
8
8
|
featomic/torch/utils.py,sha256=2Dh8B4UqD2rH49KVGe_98TPhfrESjDQMT8fdIKWmZzo,416
|
|
9
|
-
featomic/torch/torch-2.
|
|
9
|
+
featomic/torch/torch-2.10/bin/featomic_torch.dll,sha256=tz97lXWUFG6N82jkSEhct43hN3u-YmZ-VDt8792mkBE,559616
|
|
10
|
+
featomic/torch/torch-2.10/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
11
|
+
featomic/torch/torch-2.10/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
12
|
+
featomic/torch/torch-2.10/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
13
|
+
featomic/torch/torch-2.10/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
14
|
+
featomic/torch/torch-2.10/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
15
|
+
featomic/torch/torch-2.10/lib/featomic_torch.lib,sha256=bAWcqHESgn2lAfvLRDE_xxZl4GIbj06xVb2yv5n33ZA,72454
|
|
16
|
+
featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
17
|
+
featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=Cpgz7uJdiGmOG0lYcraLBK1H2-d7atRm899E5VRpem0,1430
|
|
18
|
+
featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
19
|
+
featomic/torch/torch-2.10/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
20
|
+
featomic/torch/torch-2.3/bin/featomic_torch.dll,sha256=I6wz8ps1iow-AJTBTF46xZFN160Id88tglyofp4E7Ao,464896
|
|
10
21
|
featomic/torch/torch-2.3/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
11
22
|
featomic/torch/torch-2.3/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
12
23
|
featomic/torch/torch-2.3/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
13
24
|
featomic/torch/torch-2.3/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
14
25
|
featomic/torch/torch-2.3/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
15
|
-
featomic/torch/torch-2.3/lib/featomic_torch.lib,sha256=
|
|
16
|
-
featomic/torch/torch-2.3/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=
|
|
26
|
+
featomic/torch/torch-2.3/lib/featomic_torch.lib,sha256=JSz-67nPdJZpZQLYp8gJXuxIpK2ySzSGvCtBADSypWM,72454
|
|
27
|
+
featomic/torch/torch-2.3/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
17
28
|
featomic/torch/torch-2.3/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=Bd9Y6bq572HjQzM6ucUiMLCKzbzDmVj4e7QVnz3oHp8,1428
|
|
18
29
|
featomic/torch/torch-2.3/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
19
30
|
featomic/torch/torch-2.3/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
20
|
-
featomic/torch/torch-2.4/bin/featomic_torch.dll,sha256=
|
|
31
|
+
featomic/torch/torch-2.4/bin/featomic_torch.dll,sha256=Yeiz-kPhdpKn1pFth3LppHI7jZ-xGHYWFToGq-nQngM,483840
|
|
21
32
|
featomic/torch/torch-2.4/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
22
33
|
featomic/torch/torch-2.4/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
23
34
|
featomic/torch/torch-2.4/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
24
35
|
featomic/torch/torch-2.4/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
25
36
|
featomic/torch/torch-2.4/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
26
|
-
featomic/torch/torch-2.4/lib/featomic_torch.lib,sha256=
|
|
27
|
-
featomic/torch/torch-2.4/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=
|
|
37
|
+
featomic/torch/torch-2.4/lib/featomic_torch.lib,sha256=JSz-67nPdJZpZQLYp8gJXuxIpK2ySzSGvCtBADSypWM,72454
|
|
38
|
+
featomic/torch/torch-2.4/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
28
39
|
featomic/torch/torch-2.4/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=ngrU96QgHyvnB6uFqqiWx6MYSWL0aMy23sasMsv67Jc,1428
|
|
29
40
|
featomic/torch/torch-2.4/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
30
41
|
featomic/torch/torch-2.4/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
31
|
-
featomic/torch/torch-2.5/bin/featomic_torch.dll,sha256=
|
|
42
|
+
featomic/torch/torch-2.5/bin/featomic_torch.dll,sha256=70r8NEBVr4lSH-xTr5n__nGdYjYEF2AzLOhBR94sQSw,484352
|
|
32
43
|
featomic/torch/torch-2.5/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
33
44
|
featomic/torch/torch-2.5/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
34
45
|
featomic/torch/torch-2.5/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
35
46
|
featomic/torch/torch-2.5/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
36
47
|
featomic/torch/torch-2.5/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
37
|
-
featomic/torch/torch-2.5/lib/featomic_torch.lib,sha256=
|
|
38
|
-
featomic/torch/torch-2.5/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=
|
|
48
|
+
featomic/torch/torch-2.5/lib/featomic_torch.lib,sha256=JSz-67nPdJZpZQLYp8gJXuxIpK2ySzSGvCtBADSypWM,72454
|
|
49
|
+
featomic/torch/torch-2.5/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
39
50
|
featomic/torch/torch-2.5/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=SVCmqZC_52jZM3IeWaqEfftL7iXm5I8iGhOcN82QZxM,1428
|
|
40
51
|
featomic/torch/torch-2.5/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
41
52
|
featomic/torch/torch-2.5/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
42
|
-
featomic/torch/torch-2.6/bin/featomic_torch.dll,sha256=
|
|
53
|
+
featomic/torch/torch-2.6/bin/featomic_torch.dll,sha256=hTguErLe1uQT3B-qq2jPDmaF3a0KMycCzm2kS3HZcX8,483328
|
|
43
54
|
featomic/torch/torch-2.6/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
44
55
|
featomic/torch/torch-2.6/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
45
56
|
featomic/torch/torch-2.6/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
46
57
|
featomic/torch/torch-2.6/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
47
58
|
featomic/torch/torch-2.6/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
48
|
-
featomic/torch/torch-2.6/lib/featomic_torch.lib,sha256=
|
|
49
|
-
featomic/torch/torch-2.6/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=
|
|
59
|
+
featomic/torch/torch-2.6/lib/featomic_torch.lib,sha256=bAWcqHESgn2lAfvLRDE_xxZl4GIbj06xVb2yv5n33ZA,72454
|
|
60
|
+
featomic/torch/torch-2.6/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
50
61
|
featomic/torch/torch-2.6/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=kQP4kmQ0z7-vaJOnODQvqCpr1ihdzQ-hx8yv7Puhjxc,1428
|
|
51
62
|
featomic/torch/torch-2.6/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
52
63
|
featomic/torch/torch-2.6/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
53
|
-
featomic/torch/torch-2.7/bin/featomic_torch.dll,sha256=
|
|
64
|
+
featomic/torch/torch-2.7/bin/featomic_torch.dll,sha256=pPEFJi7YH_2atkvmqdql4JLlaTsXac6LoUkErrHR0BQ,542208
|
|
54
65
|
featomic/torch/torch-2.7/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
55
66
|
featomic/torch/torch-2.7/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
56
67
|
featomic/torch/torch-2.7/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
57
68
|
featomic/torch/torch-2.7/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
58
69
|
featomic/torch/torch-2.7/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
59
|
-
featomic/torch/torch-2.7/lib/featomic_torch.lib,sha256=
|
|
60
|
-
featomic/torch/torch-2.7/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=
|
|
70
|
+
featomic/torch/torch-2.7/lib/featomic_torch.lib,sha256=bAWcqHESgn2lAfvLRDE_xxZl4GIbj06xVb2yv5n33ZA,72454
|
|
71
|
+
featomic/torch/torch-2.7/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
61
72
|
featomic/torch/torch-2.7/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=_DyPSw0pZ82CQVjKgIXEKZmpSiEvuGTlQsZamHasBuU,1428
|
|
62
73
|
featomic/torch/torch-2.7/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
63
74
|
featomic/torch/torch-2.7/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
64
|
-
featomic/torch/torch-2.8/bin/featomic_torch.dll,sha256=
|
|
75
|
+
featomic/torch/torch-2.8/bin/featomic_torch.dll,sha256=PuNm9RpFxkFpOYeJJBMOciJAch6ybve1jMhfmjv-vtY,566784
|
|
65
76
|
featomic/torch/torch-2.8/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
66
77
|
featomic/torch/torch-2.8/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
67
78
|
featomic/torch/torch-2.8/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
68
79
|
featomic/torch/torch-2.8/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
69
80
|
featomic/torch/torch-2.8/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
70
|
-
featomic/torch/torch-2.8/lib/featomic_torch.lib,sha256=
|
|
71
|
-
featomic/torch/torch-2.8/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=
|
|
81
|
+
featomic/torch/torch-2.8/lib/featomic_torch.lib,sha256=bAWcqHESgn2lAfvLRDE_xxZl4GIbj06xVb2yv5n33ZA,72454
|
|
82
|
+
featomic/torch/torch-2.8/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
72
83
|
featomic/torch/torch-2.8/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=VpwQLaAKIyTtD16rbZ_BJwjB8lwIMfW7Cg-MHTHxiYE,1428
|
|
73
84
|
featomic/torch/torch-2.8/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
74
85
|
featomic/torch/torch-2.8/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
75
|
-
featomic/torch/torch-2.9/bin/featomic_torch.dll,sha256=
|
|
86
|
+
featomic/torch/torch-2.9/bin/featomic_torch.dll,sha256=FXXeEEw4_7y6XbjZqZCofwWEyV3ouBRZiBD_k2l3eZg,566784
|
|
76
87
|
featomic/torch/torch-2.9/include/featomic/torch.hpp,sha256=SvyZvSptRxmtgSbmRlA2n3yTytZyziiur0KMb-GLMNg,258
|
|
77
88
|
featomic/torch/torch-2.9/include/featomic/torch/autograd.hpp,sha256=dLed0atbDPt_iKoYwuTgkPbRn2_1LIQwoeDvHFYMfZA,2366
|
|
78
89
|
featomic/torch/torch-2.9/include/featomic/torch/calculator.hpp,sha256=93kT5FfTMp8XR14_FN4pe5CpBkVf3pLBrpDebchw02I,4536
|
|
79
90
|
featomic/torch/torch-2.9/include/featomic/torch/exports.h,sha256=ysH09O3xQjJ6eKOVlcJX_hct21DWjKEfOLJ9t4uVyQo,1231
|
|
80
91
|
featomic/torch/torch-2.9/include/featomic/torch/system.hpp,sha256=wun75joGuZGwwxfT8jtL80lDrA6qL58f2BmRrM3wqwo,3693
|
|
81
|
-
featomic/torch/torch-2.9/lib/featomic_torch.lib,sha256=
|
|
82
|
-
featomic/torch/torch-2.9/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=
|
|
92
|
+
featomic/torch/torch-2.9/lib/featomic_torch.lib,sha256=bAWcqHESgn2lAfvLRDE_xxZl4GIbj06xVb2yv5n33ZA,72454
|
|
93
|
+
featomic/torch/torch-2.9/lib/cmake/featomic_torch/featomic_torch-config-version.cmake,sha256=tzcAU0OWc4ZpckyjpqSmgpo0pmx-c3RcGyULdiNBz_U,3760
|
|
83
94
|
featomic/torch/torch-2.9/lib/cmake/featomic_torch/featomic_torch-config.cmake,sha256=RQBSDLXulK0_1mYPR64jcdFXEAdiJKhjJiLmnShQibo,1428
|
|
84
95
|
featomic/torch/torch-2.9/lib/cmake/featomic_torch/featomic_torch-targets-release.cmake,sha256=TDR0xsDfzk_IyNblcGbgRASYRkJHRcX4RLFzz32bl_I,938
|
|
85
96
|
featomic/torch/torch-2.9/lib/cmake/featomic_torch/featomic_torch-targets.cmake,sha256=qMR26A9GFjWJesG4HrxPYomz7hEgTvuqegK2RJzGrfY,4363
|
|
86
|
-
featomic_torch-0.7.
|
|
87
|
-
featomic_torch-0.7.
|
|
88
|
-
featomic_torch-0.7.
|
|
89
|
-
featomic_torch-0.7.
|
|
90
|
-
featomic_torch-0.7.
|
|
91
|
-
featomic_torch-0.7.
|
|
97
|
+
featomic_torch-0.7.3.dist-info/licenses/AUTHORS,sha256=ZRgnD7LtwoLGI7JzMOuCUuN29E4O7dPQWvIwAGix-DU,115
|
|
98
|
+
featomic_torch-0.7.3.dist-info/licenses/LICENSE,sha256=OiYybUy-uWydIsPg8ZhOAG7SmQzG0uAvG0n7-RtNWts,1534
|
|
99
|
+
featomic_torch-0.7.3.dist-info/METADATA,sha256=sePimuNrXjvCtxtA8NIUScJEhZdErfBEvX6f1RehlW8,1686
|
|
100
|
+
featomic_torch-0.7.3.dist-info/WHEEL,sha256=LjAapQgoyQU8mYdYkCsWm9jGy4p7twRAalwZQnPij5I,99
|
|
101
|
+
featomic_torch-0.7.3.dist-info/top_level.txt,sha256=I3OeQQ47Chc163yvQQ5r_M6DZgM3VUNGOMr_72psMc4,24
|
|
102
|
+
featomic_torch-0.7.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|