Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for east (0.06 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output a = ops::Placeholder(root.WithOpName("test/a"), DT_INT64);
      Output b = ops::Placeholder(root.WithOpName("test/b"), DT_INT64);
    
      Output cast_a = ops::Cast(root.WithOpName("test/cast_a"), a, DT_INT32);
      Output cast_b = ops::Cast(root.WithOpName("test/cast_b"), b, DT_INT32);
    
      Output tensor_list_reserve = ops::TensorListReserve(
          root.WithOpName("test/tensor_list_reserve"), cast_a, cast_b, DT_FLOAT);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

    import org.gradle.buildinit.InsecureProtocolOption;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl;
    import org.gradle.groovy.scripts.internal.InitialPassStatementTransformer;
    import org.gradle.internal.Cast;
    import org.gradle.internal.UncheckedException;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.util.internal.GFileUtils;
    import org.gradle.util.internal.GUtil;
    import org.slf4j.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    template<typename To>
    inline To ImplicitCast_(To x) { return x; }
    
    // When you upcast (that is, cast a pointer from type Foo to type
    // SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts
    // always succeed.  When you downcast (that is, cast a pointer from
    // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

    import org.gradle.api.provider.SupportsConvention;
    import org.gradle.api.reflect.InjectionPointQualifier;
    import org.gradle.api.tasks.Nested;
    import org.gradle.cache.internal.CrossBuildInMemoryCache;
    import org.gradle.internal.Cast;
    import org.gradle.internal.extensibility.NoConventionMapping;
    import org.gradle.internal.instantiation.ClassGenerationException;
    import org.gradle.internal.instantiation.InjectAnnotationHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    template<typename To>
    inline To ImplicitCast_(To x) { return x; }
    
    // When you upcast (that is, cast a pointer from type Foo to type
    // SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts
    // always succeed.  When you downcast (that is, cast a pointer from
    // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      %val = "tf.TensorArrayReadV3"(%ta#0, %index, %ta#1) : (tensor<!tf_type.resource<tensor<*xf32>>>, tensor<i32>, tensor<f32>) -> tensor<*xf32>
      // CHECK: %[[CAST:.*]] = tensor.cast %[[ELEM]] : tensor<3xf32> to tensor<*xf32>
      // CHECK: return %[[CAST]] : tensor<*xf32>
      func.return %val : tensor<*xf32>
    }
    // -----
    
    // Test CaseRegion with gradient inside PartitionedCall Op. The gradient local
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedMap.java

          // even though K doesn't explicitly implement Comparable.
          comparator = (Comparator<? super K>) NATURAL_ORDER;
        }
        if (map instanceof ImmutableSortedMap) {
          // TODO(kevinb): Prove that this cast is safe, even though
          // Collections.unmodifiableSortedMap requires the same key type.
          @SuppressWarnings("unchecked")
          ImmutableSortedMap<K, V> kvMap = (ImmutableSortedMap<K, V>) map;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // 2) Any resource stores except the last one.
    // TODO(ycao): Store-load forwarding implemented here is only correct when
    // computation is purely sequential (no concurrency). Need to support concurrent
    // computation as well.
    void ForwardStoreToLoad(Block* block) {
      // resource_handle_to_last_store_op keeps track of the most recent (last)
      // store to each resource. Non-existent entry indicates that a resource has
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          rhs, rhs_ty = self.visit(right)
          if isinstance(op, ast.Eq):
            pred = 'eq'
          elif isinstance(op, ast.Lt):
            pred = 'ult'
          elif isinstance(op, ast.LtE):
            pred = 'ule'
          elif isinstance(op, ast.Gt):
            pred = 'ugt'
          elif isinstance(op, ast.GtE):
            pred = 'uge'
          elif isinstance(op, ast.NotEq):
            pred = 'ne'
          else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

    import groovy.lang.Closure;
    import groovy.lang.MissingMethodException;
    import groovy.lang.MissingPropertyException;
    import groovy.lang.ReadOnlyPropertyException;
    import org.apache.commons.lang.StringUtils;
    import org.gradle.internal.Cast;
    import org.gradle.internal.reflect.Types.TypeVisitResult;
    import org.gradle.internal.reflect.Types.TypeVisitor;
    import org.gradle.internal.reflect.UnsupportedPropertyValueException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
Back to top