- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,172 for Array (0.14 sec)
-
tensorflow/c/experimental/ops/array_ops.h
limitations under the License. ==============================================================================*/ // This file is MACHINE GENERATED! Do not edit. #ifndef TENSORFLOW_C_EXPERIMENTAL_OPS_ARRAY_OPS_H_ #define TENSORFLOW_C_EXPERIMENTAL_OPS_ARRAY_OPS_H_ #include "tensorflow/c/eager/abstract_context.h" #include "tensorflow/c/eager/abstract_tensor_handle.h" namespace tensorflow { namespace ops {
C - Registered: 2023-11-28 12:39 - Last Modified: 2022-05-10 19:11 - 2.7K bytes - Viewed (0) -
tensorflow/c/experimental/gradients/array_grad.h
#ifndef TENSORFLOW_C_EXPERIMENTAL_GRADIENTS_ARRAY_GRAD_H_ #define TENSORFLOW_C_EXPERIMENTAL_GRADIENTS_ARRAY_GRAD_H_ #include "tensorflow/c/eager/gradients.h" namespace tensorflow { namespace gradients { GradientFunction* IdentityNRegisterer(const ForwardOperation& op); } // namespace gradients } // namespace tensorflow
C - Registered: 2023-11-28 12:39 - Last Modified: 2020-12-03 22:28 - 1K bytes - Viewed (0) -
tensorflow/c/experimental/gradients/array_grad.cc
See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/c/experimental/gradients/array_grad.h" #include "tensorflow/c/eager/abstract_context.h" namespace tensorflow { namespace gradients { namespace { class IdentityNGradientFunction : public GradientFunction { public:
C++ - Registered: 2023-11-28 12:39 - Last Modified: 2022-06-15 01:15 - 1.6K bytes - Viewed (0) -
tensorflow/c/experimental/ops/array_ops.cc
limitations under the License. ==============================================================================*/ // This file is MACHINE GENERATED! Do not edit. #include "tensorflow/c/experimental/ops/array_ops.h" #include "tensorflow/c/eager/abstract_context.h" #include "tensorflow/c/eager/abstract_tensor_handle.h" #include "tensorflow/c/eager/tracing_utils.h" #include "tensorflow/core/framework/types.h"
C++ - Registered: 2023-11-28 12:39 - Last Modified: 2022-05-10 19:11 - 6.7K bytes - Viewed (0) -
tensorflow/c/experimental/gradients/array_grad_test.cc
#include "tensorflow/c/experimental/gradients/array_grad.h" #include "tensorflow/c/eager/c_api_test_util.h" #include "tensorflow/c/eager/c_api_unified_experimental_internal.h" #include "tensorflow/c/eager/unified_api_testutil.h" #include "tensorflow/c/experimental/gradients/grad_test_helper.h" #include "tensorflow/c/experimental/gradients/tape/tape_context.h" #include "tensorflow/c/experimental/ops/array_ops.h" #include "tensorflow/c/tf_status_helper.h"
C++ - Registered: 2023-11-28 12:39 - Last Modified: 2023-04-13 17:32 - 5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Chars.java
checkArgument(array.length > 0); char min = array[0]; for (int i = 1; i < array.length; i++) { if (array[i] < min) { min = array[i]; } } return min; } /** * Returns the greatest value present in {@code array}. * * @param array a <i>nonempty</i> array of {@code char} values
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-05-26 22:04 - 23.5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Doubles.java
Arrays.sort(array, fromIndex, toIndex); reverse(array, fromIndex, toIndex); } /** * Reverses the elements of {@code array}. This is equivalent to {@code * Collections.reverse(Doubles.asList(array))}, but is likely to be more efficient. * * @since 23.1 */ public static void reverse(double[] array) { checkNotNull(array); reverse(array, 0, array.length); }
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-10-11 01:53 - 27.2K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
public static int min(int... array) { checkArgument(array.length > 0); int min = array[0]; for (int i = 1; i < array.length; i++) { if (array[i] < min) { min = array[i]; } } return min; } /** * Returns the greatest value present in {@code array}. * * @param array a <i>nonempty</i> array of {@code int} values
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-10-11 01:53 - 29.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java
"toArray(sameSizeE[]) should return the given array", array, collection.toArray(array)); expectArrayContentsInOrder(getOrderedElements(), array); } public void testToArray_rightSizedArrayOfObject() { Object[] array = new Object[getNumElements()]; assertSame( "toArray(sameSizeObject[]) should return the given array", array, collection.toArray(array));
Java - Registered: 2023-12-01 12:43 - Last Modified: 2021-07-07 18:24 - 7.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java
"toArray(sameSizeE[]) should return the given array", array, collection.toArray(array)); expectArrayContentsInOrder(getOrderedElements(), array); } public void testToArray_rightSizedArrayOfObject() { Object[] array = new Object[getNumElements()]; assertSame( "toArray(sameSizeObject[]) should return the given array", array, collection.toArray(array));
Java - Registered: 2023-12-01 12:43 - Last Modified: 2021-07-07 18:24 - 7.9K bytes - Viewed (0)