HomeSort by relevance Sort by last modified time
    Searched refs:bottleneck (Results 1 - 25 of 31) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
test_iSACfixfloat.c 62 int bottleneck, /* excluding headers; bits/s */
73 (((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate));
90 int16_t bottleneck; local
152 printf(" an instantaneous Bottleneck value. If not, it\n");
153 printf(" will be an adaptive Bottleneck value.\n\n");
154 printf("bottleneck_value: The value of the bottleneck provided either\n");
156 printf(" read from a file (e.g. bottleneck.txt)\n\n");
169 printf("./kenny.exe -I bottleneck.txt -m 1 speechIn.pcm speechOut.pcm\n\n");
183 printf("\nInstantaneous BottleNeck\n");
210 printf("\nAdaptive BottleNeck\n")
    [all...]
kenny.cc 44 /* Struct for bottleneck model */
54 int bottleneck, /* excluding headers; bits/s */
66 ((packet_size + HeaderSize) * 8 * FS) / (bottleneck + HeaderRate));
105 int16_t bottleneck; local
169 printf(" an instantaneous Bottleneck value. If not, it\n");
170 printf(" will be an adaptive Bottleneck value.\n\n");
171 printf("bottleneck_value :the value of the bottleneck provided either\n");
173 printf(" read from a file (e.g. bottleneck.txt)\n\n");
225 printf("./kenny.exe -I bottleneck.txt speechIn.pcm speechOut.pcm\n\n");
241 printf("\nInstantaneous BottleNeck\n")
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
isac.c 49 * adaptation, or direct change of the bottleneck in instantaneous mode.
104 * This function updates the bottleneck only if the codec is operating in
105 * channel-adaptive mode. Furthermore, as the update of bottleneck might
111 /* Read the bottleneck from bandwidth estimator for the
117 int32_t bottleneck = local
122 && (bottleneck > 37000)
123 && (bottleneck < 41000)) {
124 bottleneck = 37000;
131 (bottleneck > 46000)) {
132 bottleneck = 46000
511 int32_t bottleneck = 0; local
2208 int32_t bottleneck = instISAC->bottleneck; local
    [all...]
structs.h 329 double bottleneck; member in struct:__anon44073
369 double bottleneck; member in struct:__anon44074
459 // overall bottleneck of the codec
460 int32_t bottleneck; member in struct:__anon44081
encode.c 44 Rate allocation tables of lower and upper-band bottleneck for
49 The overall bottleneck of the coder is between 38 kbps and 45 kbps. We have
55 bottleneck of 31 kbps for lower-band and 27 kbps for upper-band. Given an
56 overall bottleneck of the codec, we use linear interpolation to get
61 The overall bottleneck of the coder is between 50 kbps and 56 kbps. We have
66 of 53.6 kbps corresponts to a bottleneck of 32 kbps for lower-band and 30
67 kbps for upper-band. Given an overall bottleneck of the codec, we use linear
90 * - inRateBitPerSec : a total bottleneck in bits/sec.
93 * - rateLBBitPerSec : a bottleneck allocated to the lower-band
95 * - rateUBBitPerSec : a bottleneck allocated to the upper-ban
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/SwitchingSampRate/
SwitchingSampRate.cc 62 int bottleneck[MAX_NUM_CLIENTS]; local
118 bottleneck[clientCntr] = (clientCntr)? bnSWB:bnWB;
122 bottleneck[clientCntr] = (clientCntr)? minBn:maxBn;
125 printf("Bottleneck....................... %0.3f kbits/sec \n",
126 bottleneck[clientCntr] / 1000.0);
176 bottleneck[clientCntr], 30) < 0)
178 printf("Could not setup bottleneck and frame-size for client %d\n",
314 bottleneck[senderIdx] / 1000.0,
338 // After ~20 sec change the bottleneck.
344 // int newBottleneck = bottleneck[senderIdx]
    [all...]
  /external/tensorflow/tensorflow/examples/image_retraining/
retrain_test.py 73 bottleneck = tf.placeholder(tf.float32, [1, 1024], name='bottleneck')
75 retrain.add_final_training_ops(5, 'final', bottleneck, 1024, False)
82 bottleneck = tf.placeholder(tf.float32, [1, 1024], name='bottleneck')
84 retrain.add_final_training_ops(5, 'final', bottleneck, 1024, True)
retrain.py 258 """"Returns a path to a bottleneck file for a label at the given index.
265 bottleneck_dir: Folder string holding cached files of bottleneck values.
306 """Runs inference on an image to extract the 'bottleneck' summary layer.
317 Numpy array of bottleneck values.
379 """Create a single bottleneck file."""
380 tf.logging.info('Creating bottleneck at ' + bottleneck_path)
402 """Retrieves or calculates bottleneck values for an image.
404 If a cached version of the bottleneck data exists on-disk, return that,
417 bottleneck_dir: Folder string holding cached files of bottleneck values.
421 bottleneck_tensor: The output tensor for the bottleneck values
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/util/
utility.c 139 int bottleneck, /* excluding headers; bits/s */
157 // (bottleneck + HeaderRate)
159 / (double)(bottleneck + headerRate) + 0.5);
utility.h 103 int bottleneck, /* excluding headers; bits/s */
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
ReleaseTest-API.cc 49 int32_t bottleneck = 0; local
127 printf(" an instantaneous Bottleneck value. If not, it\n");
128 printf(" will be an adaptive Bottleneck value.\n");
130 printf("[-B num] : the value of the bottleneck provided either\n");
132 printf(" read from a file (e.g. bottleneck.txt)\n");
161 printf("[-T rate file] : test trans-coding with target bottleneck\n");
222 printf("Instantaneous BottleNeck\n");
226 /* Set (initial) bottleneck value */
329 /* Get Bottleneck value */
332 bottleneck = atoi(argv[i])
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
simpleKenny.c 65 int32_t bottleneck = 39; local
126 printf("%s infile outfile -bn bottleneck [options]\n\n", argv[0]);
129 printf("-bn bottleneck.. the value of the bottleneck in bit/sec, e.g.\n");
155 /* Get Bottleneck value */
156 bottleneck = readParamInt(argc, argv, "-bn", 50000);
157 fprintf(stderr, "\nfixed bottleneck rate of %d bits/s\n\n", bottleneck);
229 printf("Bottleneck............... %d bits/sec\n", bottleneck);
    [all...]
  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
resnet_v1.py 26 The networks defined in this module utilize the bottleneck building block of
75 def bottleneck(inputs, function
82 """Bottleneck residual unit variant with BN after convolutions.
85 its definition. Note that we use here the bottleneck variant which has an
86 extra bottleneck layer.
94 depth_bottleneck: The depth of the bottleneck layers.
196 [layers.conv2d, bottleneck, resnet_utils.stack_blocks_dense],
228 """Helper function for creating a resnet_v1 bottleneck block.
232 base_depth: The depth of the bottleneck layer for each unit.
238 A resnet_v1 bottleneck block
    [all...]
resnet_v2.py 69 def bottleneck(inputs, function
76 """Bottleneck residual unit variant with BN before convolutions.
79 Fig. 1(b) of [2] for its definition. Note that we use here the bottleneck
80 variant which has an extra bottleneck layer.
88 depth_bottleneck: The depth of the bottleneck layers.
200 [layers_lib.conv2d, bottleneck, resnet_utils.stack_blocks_dense],
241 """Helper function for creating a resnet_v2 bottleneck block.
245 base_depth: The depth of the bottleneck layer for each unit.
251 A resnet_v2 bottleneck block.
253 return resnet_utils.Block(scope, bottleneck, [{
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/include/
isac.h 273 * This function sets the initial values of bottleneck and frame-size if
278 * bottleneck. Then iSAC will not automatically change the frame-size.
283 * - rateBPS : initial value of bottleneck in bits/second
285 * For default bottleneck set rateBPS = 0
356 * This function outputs the target bottleneck of the codec. In
357 * channel-adaptive mode, the target bottleneck is specified through in-band
360 * bottleneck is provided to the encoder by calling xxx_control(...). If
362 * value for bottleneck at 16 kHz encoder sampling rate is 32000 bits/sec,
364 * Note that the output is the iSAC internal operating bottleneck which might
371 * - *bottleneck : bottleneck in bits/se
    [all...]
  /prebuilts/go/darwin-x86/test/bench/go1/
revcomp_test.go 61 // This loop is the bottleneck.
  /prebuilts/go/linux-x86/test/bench/go1/
revcomp_test.go 61 // This loop is the bottleneck.
  /prebuilts/go/darwin-x86/src/debug/gosym/
pclntab.go 406 // If this turns out to be a bottleneck, we could build a map[int32][]int32
  /prebuilts/go/linux-x86/src/debug/gosym/
pclntab.go 406 // If this turns out to be a bottleneck, we could build a map[int32][]int32
  /prebuilts/go/darwin-x86/src/cmd/go/internal/work/
gc.go 188 // is likely to be a bottleneck, e.g. when:
  /prebuilts/go/linux-x86/src/cmd/go/internal/work/
gc.go 188 // is likely to be a bottleneck, e.g. when:
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
bimport.go 1358 // rawByte is the bottleneck interface for reading from p.in.
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/profile/
legacy_profile.go 188 // up as a bottleneck, evaluate sorting the mappings and doing a
    [all...]
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
bimport.go 878 // byte is the bottleneck interface for reading p.data.
  /prebuilts/go/darwin-x86/src/runtime/pprof/internal/profile/
legacy_profile.go 177 // up as a bottleneck, evaluate sorting the mappings and doing a

Completed in 515 milliseconds

1 2