/external/tensorflow/tensorflow/python/kernel_tests/ |
D | variable_scope_test.py | 84 v = vs.get_variable("v", [1]) 85 v1 = vs.get_variable("v", [1]) 92 v1 = vs.get_variable("v", [1], use_resource=True) 100 v = vs.get_variable("v", [1]) 101 v1 = vs.get_variable("v", [1]) 105 vs.get_variable("w", [1], reuse=False) # That's ok. 107 vs.get_variable("v", [1], reuse=False) # That fails. 109 vs.get_variable("v", [1], reuse=True) # That's ok. 111 vs.get_variable("u", [1], reuse=True) # That fails. 117 vs.get_variable("v1", [2]) [all …]
|
D | template_test.py | 41 return variable_scope.get_variable( 48 return variable_scope.get_variable( 55 return variable_scope.get_variable( 61 variable_scope.get_variable(name, shape=[1], trainable=trainable) 62 return variable_scope.get_variable( 69 return variable_scope.get_variable( 88 m = variable_scope.get_variable( 90 b = variable_scope.get_variable( 129 m = variable_scope.get_variable( 131 b = variable_scope.get_variable( [all …]
|
D | partitioned_variables_test.py | 46 v0 = variable_scope.get_variable( 57 v0 = variable_scope.get_variable("v0", dtype=dtypes.int64, shape=[20]) 66 v0 = variable_scope.get_variable( 84 v0 = variable_scope.get_variable( 182 v3str = variable_scope.get_variable( 206 v0 = variable_scope.get_variable( 560 var_x = variable_scope.get_variable( 582 var_x = variable_scope.get_variable( 612 v0 = variable_scope.get_variable(
|
/external/tensorflow/tensorflow/examples/speech_commands/ |
D | models.py | 190 weights = tf.get_variable( 194 bias = tf.get_variable( 260 first_weights = tf.get_variable( 264 first_bias = tf.get_variable( 279 second_weights = tf.get_variable( 286 second_bias = tf.get_variable( 306 final_fc_weights = tf.get_variable( 310 final_fc_bias = tf.get_variable( 378 first_weights = tf.get_variable( 382 first_bias = tf.get_variable( [all …]
|
/external/tensorflow/tensorflow/contrib/framework/python/framework/ |
D | checkpoint_utils_test.py | 38 v1 = variable_scope.get_variable("var1", [1, 10]) 39 v2 = variable_scope.get_variable("var2", [10, 10]) 40 v3 = variable_scope.get_variable("var3", [100, 100]) 42 v4 = variable_scope.get_variable("var4", [9, 9]) 58 v1 = variable_scope.get_variable( 122 my1 = variable_scope.get_variable("my1", [1, 10]) 124 my2 = variable_scope.get_variable("my2", [10, 10]) 126 my4 = variable_scope.get_variable("var4", [9, 9]) 127 my3 = variable_scope.get_variable("my3", [100, 100]) 154 my4 = variable_scope.get_variable("var4", [9, 9]) [all …]
|
/external/tensorflow/tensorflow/python/training/ |
D | checkpoint_utils_test.py | 40 v1 = variable_scope.get_variable("var1", [1, 10]) 41 v2 = variable_scope.get_variable("var2", [10, 10]) 42 v3 = variable_scope.get_variable("var3", [100, 100]) 44 v4 = variable_scope.get_variable("var4", [9, 9]) 60 v1 = variable_scope.get_variable( 124 my1 = variable_scope.get_variable("my1", [1, 10]) 126 my2 = variable_scope.get_variable("my2", [10, 10]) 128 my4 = variable_scope.get_variable("var4", [9, 9]) 129 my3 = variable_scope.get_variable("my3", [100, 100]) 159 my1 = variable_scope.get_variable("my1", [1, 10]) [all …]
|
D | warm_starting_util_test.py | 64 var = variable_scope.get_variable( 84 all_vars.append(variable_scope.get_variable( 123 fruit_weights = variable_scope.get_variable( 141 fruit_weights = variable_scope.get_variable( 155 fruit_weights = variable_scope.get_variable( 181 fruit_weights = variable_scope.get_variable( 210 fruit_weights = variable_scope.get_variable( 230 fruit_output_layer = variable_scope.get_variable( 255 fruit_weights = variable_scope.get_variable( 284 fruit_weights = variable_scope.get_variable( [all …]
|
D | checkpoint_ops_test.py | 50 variable_scope.get_variable(name='embeddings', shape=[5, 16], 150 remapped_matrix = variable_scope.get_variable( 184 remapped_matrix = variable_scope.get_variable( 222 remapped_matrix = variable_scope.get_variable( 258 remapped_matrix = variable_scope.get_variable( 292 remapped_embeddings = variable_scope.get_variable( 338 remapped_embeddings = variable_scope.get_variable( 376 remapped_embeddings = variable_scope.get_variable(
|
/external/tensorflow/tensorflow/python/grappler/ |
D | hierarchical_controller.py | 186 variable_scope.get_variable("w_grouping_ff", [ 190 variable_scope.get_variable( 194 variable_scope.get_variable("encoder_lstm_forward", [ 198 variable_scope.get_variable("encoder_lstm_backward", [ 202 variable_scope.get_variable( 204 variable_scope.get_variable( 207 variable_scope.get_variable( 209 variable_scope.get_variable("device_go_embedding", 211 variable_scope.get_variable( 217 variable_scope.get_variable( [all …]
|
/external/tensorflow/tensorflow/contrib/tensor_forest/hybrid/python/layers/ |
D | decisions_to_data.py | 40 self.tree_parameters = variable_scope.get_variable( 46 self.tree_thresholds = variable_scope.get_variable( 81 self.tree_parameters = variable_scope.get_variable( 87 self.tree_thresholds = variable_scope.get_variable( 126 self.tree_parameters = variable_scope.get_variable( 132 self.tree_thresholds = variable_scope.get_variable( 164 self.tree_parameters = variable_scope.get_variable( 170 self.tree_thresholds = variable_scope.get_variable( 216 self.tree_parameters = variable_scope.get_variable( 222 self.tree_thresholds = variable_scope.get_variable(
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/ |
D | models.py | 100 weights = vs.get_variable( 102 bias = vs.get_variable('bias', [output_shape], dtype=dtype) 104 weights = vs.get_variable( 109 bias = vs.get_variable( 157 weights = vs.get_variable( 159 bias = vs.get_variable('bias', [y.get_shape()[-1]], dtype=dtype) 161 weights = vs.get_variable( 166 bias = vs.get_variable(
|
/external/tensorflow/tensorflow/python/profiler/internal/ |
D | model_analyzer_testlib.py | 41 _ = variable_scope.get_variable( 45 kernel = variable_scope.get_variable( 50 kernel = variable_scope.get_variable( 79 kernel1 = variable_scope.get_variable( 85 kernel2 = variable_scope.get_variable(
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | optimizers_test.py | 40 var = variable_scope.get_variable( 43 global_step = variable_scope.get_variable( 126 var = variable_scope.get_variable( 139 global_step=variable_scope.get_variable( 150 global_step=variable_scope.get_variable( 292 unused_variable = variable_scope.get_variable("ignore_me", []) 311 var = variable_scope.get_variable( 314 update_var = variable_scope.get_variable( 336 var = variable_scope.get_variable( 339 update_var = variable_scope.get_variable( [all …]
|
/external/u-boot/lib/efi_selftest/ |
D | efi_selftest_variables.c | 77 ret = runtime->get_variable(L"efi_st_var0", &guid_vendor0, in execute() 100 ret = runtime->get_variable(L"efi_st_var1", &guid_vendor1, in execute() 125 ret = runtime->get_variable(L"efi_st_var1", &guid_vendor1, in execute() 167 ret = runtime->get_variable(L"efi_st_var1", &guid_vendor1, in execute() 181 ret = runtime->get_variable(L"efi_st_var0", &guid_vendor0, in execute()
|
/external/tensorflow/tensorflow/contrib/distribute/python/ |
D | checkpoint_utils_test.py | 43 v1 = variable_scope.get_variable("var1", [1, 10]) 44 v2 = variable_scope.get_variable("var2", [10, 10]) 78 v1 = variable_scope.get_variable("new_var1", [1, 10]) 79 v2 = variable_scope.get_variable( 113 v1 = variable_scope.get_variable("new_var1", [1, 10])
|
D | parameter_server_strategy_test.py | 161 n = variable_scope.get_variable('n', initializer=10.0) 180 x = variable_scope.get_variable( 194 y = variable_scope.get_variable( 204 z = variable_scope.get_variable( 226 u = variable_scope.get_variable('u', initializer=30.0) 227 v = variable_scope.get_variable('v', initializer=30.0) 262 n = variable_scope.get_variable( 275 x = variable_scope.get_variable( 336 x = variable_scope.get_variable( 348 y = variable_scope.get_variable( [all …]
|
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
D | math_utils.py | 446 raw_values = variable_scope.get_variable( 456 off_diagonal_scale=variable_scope.get_variable( 462 variable_scope.get_variable( 786 max_time_seen=variable_scope.get_variable( 791 chunk_count=variable_scope.get_variable( 797 inter_observation_duration_sum=variable_scope.get_variable( 803 example_count=variable_scope.get_variable( 808 overall_feature_sum=variable_scope.get_variable( 814 overall_feature_sum_of_squares=variable_scope.get_variable( 944 mean=variable_scope.get_variable( [all …]
|
/external/tensorflow/tensorflow/contrib/opt/python/training/ |
D | elastic_average_optimizer_test.py | 85 var_0 = variable_scope.get_variable(initializer=0.0, name="v0") 86 var_1 = variable_scope.get_variable(initializer=1.0, name="v1") 98 partition_var = variable_scope.get_variable( 205 v0 = variable_scope.get_variable(initializer=0.0, name="v0") 206 v1 = variable_scope.get_variable(initializer=1.0, name="v1") 266 partition_var = variable_scope.get_variable( 287 v = variable_scope.get_variable(initializer=[1, 2], name="v") 288 w = variable_scope.get_variable(initializer=[2, 1], name="w")
|
/external/tensorflow/tensorflow/contrib/rnn/python/ops/ |
D | rnn_cell.py | 81 vs.get_variable( 92 vs.get_variable("gamma", shape=shape, initializer=gamma_init) 93 vs.get_variable("beta", shape=shape, initializer=beta_init) 264 b = vs.get_variable( 288 w_f_diag = vs.get_variable( 290 w_o_diag = vs.get_variable( 418 b = vs.get_variable( 426 w_f_diag = vs.get_variable( 428 w_i_diag = vs.get_variable( 430 w_o_diag = vs.get_variable( [all …]
|
D | core_rnn_cell.py | 96 self._weights = vs.get_variable( 105 self._biases = vs.get_variable( 170 weights = vs.get_variable( 184 biases = vs.get_variable( 261 embedding = vs.get_variable(
|
/external/tensorflow/tensorflow/python/autograph/converters/ |
D | side_effect_guards_test.py | 52 v = variable_scope.get_variable('test', initializer=2) 73 v = variable_scope.get_variable('test', initializer=2) 114 v = variable_scope.get_variable('test', initializer=2) 135 v = variable_scope.get_variable('test', initializer=2) 158 v = variable_scope.get_variable('test', initializer=2)
|
/external/tensorflow/tensorflow/contrib/input_pipeline/python/ops/ |
D | input_pipeline_ops.py | 88 counter = variable_scope.get_variable( 95 string_tensor = variable_scope.get_variable( 101 filename_counter = variable_scope.get_variable(
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_cs_derived.cpp | 115 WorkGroupSize = shader->symbols->get_variable("gl_LocalGroupSizeARB"); in find_sysvals() 117 WorkGroupSize = shader->symbols->get_variable("gl_WorkGroupSize"); in find_sysvals() 120 gl_WorkGroupID = shader->symbols->get_variable("gl_WorkGroupID"); in find_sysvals() 121 gl_LocalInvocationID = shader->symbols->get_variable("gl_LocalInvocationID"); in find_sysvals()
|
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/ |
D | lstm_ops_test.py | 126 wci = variable_scope.get_variable( 128 wcf = variable_scope.get_variable( 130 wco = variable_scope.get_variable( 133 w = variable_scope.get_variable( 137 b = variable_scope.get_variable( 462 variable_scope.get_variable( 467 variable_scope.get_variable( 541 inputs = variable_scope.get_variable( 595 inputs = variable_scope.get_variable( 601 w = variable_scope.get_variable( [all …]
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | base_test.py | 49 name="v", shape=[], getter=variable_scope.get_variable) 54 getter=variable_scope.get_variable) 61 getter=variable_scope.get_variable)
|