Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get beyond one type of Intel bugs #120

Merged
merged 2 commits into from
Feb 8, 2024
Merged
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
2 changes: 1 addition & 1 deletion src/inference_engine/activation_strategy_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module activation_strategy_m

! External dependencies
use kind_parameters_m, only : rkind
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/hyperparameters_m.f90
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module hyperparameters_m
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
use kind_parameters_m, only : rkind
implicit none

Expand Down
3 changes: 2 additions & 1 deletion src/inference_engine/inference_engine_m_.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
module inference_engine_m_
!! Define an abstraction that supports inference operationsn on a neural network
use activation_strategy_m, only : activation_strategy_t
use sourcery_m, only : file_t, string_t
use sourcery_file_m, only : file_t
use sourcery_string_m, only : string_t
use kind_parameters_m, only : rkind
use tensor_m, only : tensor_t
use differentiable_activation_strategy_m, only :differentiable_activation_strategy_t
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/inference_engine_s.f90
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use relu_m, only : relu_t
use layer_m, only : layer_t
use neuron_m, only : neuron_t
use sourcery_m, only : separated_values
use sourcery_formats_m, only : separated_values
implicit none

interface assert_consistency
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/layer_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
! Terms of use are as specified in LICENSE.txt
module layer_m
use neuron_m, only : neuron_t
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
use kind_parameters_m, only : rkind
use inference_engine_m_, only : inference_engine_t
implicit none
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/network_configuration_m.f90
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module network_configuration_m
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/network_configuration_s.f90
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
submodule(network_configuration_m) network_configuration_s
use assert_m, only : assert
use sourcery_m, only : csv
use sourcery_formats_m, only : csv
implicit none

character(len=*), parameter :: skip_connections_key = "skip connections"
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/neuron_m.f90
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
! Copyright (c), The Regents of the University of California
! Terms of use are as specified in LICENSE.txt
module neuron_m
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
use kind_parameters_m, only : rkind
implicit none

Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/relu_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module relu_m
use differentiable_activation_strategy_m, only : differentiable_activation_strategy_t
use kind_parameters_m, only : rkind
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/sigmoid_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module sigmoid_m
use differentiable_activation_strategy_m, only : differentiable_activation_strategy_t
use kind_parameters_m, only : rkind
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/step_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module step_m
use activation_strategy_m, only : activation_strategy_t
use kind_parameters_m, only : rkind
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/swish_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module swish_m
use differentiable_activation_strategy_m, only : differentiable_activation_strategy_t
use kind_parameters_m, only : rkind
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
implicit none

private
Expand Down
2 changes: 1 addition & 1 deletion src/inference_engine/trainable_engine_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
! Terms of use are as specified in LICENSE.txt
module trainable_engine_m
!! Define an abstraction that supports training a neural network
use sourcery_m, only : string_t
use sourcery_string_m, only : string_t
use inference_engine_m_, only : inference_engine_t
use differentiable_activation_strategy_m, only : differentiable_activation_strategy_t
use kind_parameters_m, only : rkind
Expand Down
3 changes: 2 additions & 1 deletion src/inference_engine/training_configuration_m.f90
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module training_configuration_m
use sourcery_m, only : string_t, file_t
use sourcery_string_m, only : string_t
use sourcery_file_m, only : file_t
use hyperparameters_m, only : hyperparameters_t
use network_configuration_m, only : network_configuration_t
use kind_parameters_m, only : rkind
Expand Down
Loading