Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for scast (1.01 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        # TODO(fengliuai): currently we don't support backward type inference, so we
        # have to store these non-derivable type in the signatures, and then they
        # can be used to cast the values when raising to tf ops.
        if arg_def.type == types_pb2.DT_FLOAT:
          attr_names.append('f32_')
        elif arg_def.type == types_pb2.DT_INT32:
          attr_names.append('i32_')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. 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)
  3. android/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: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          "ShapedType",
          "return resource_subtype().cast<ShapedType>();",
          [{ mlir::TF::ShapeAttr::get($_ctxt, $_self) }]>;
    
      let extraClassDeclaration = [{
        TensorType resource_subtype() { return resource_type().getSubtypes()[0]; }
    
        ResourceType resource_type() {
          return getElementTypeOrSelf(getResource()).cast<TF::ResourceType>();
        }
      }];
    
      let hasVerifier = 1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

     * limitations under the License.
     */
    package org.gradle.tooling.internal.consumer.parameters;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.Cast;
    import org.gradle.internal.event.ListenerBroadcast;
    import org.gradle.tooling.Failure;
    import org.gradle.tooling.events.FinishEvent;
    import org.gradle.tooling.events.OperationDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/jcifs/smb/SmbSessionImpl.java

                    if ( ex != null ) {
                        throw ex;
                    }
    
                    if ( ctx.isEstablished() ) {
                        setSessionSetup(response);
                        @SuppressWarnings ( "cast" )
                        CommonServerMessageBlockResponse cresp = (CommonServerMessageBlockResponse) ( response != null ? response.getNextResponse()
                                : null );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    both the outermost element type of tensors as well as the nested component
    type (e.g., for tensor lists).
    
    During shape refinement this pass may insert additional cast operations as
    well as fold some constant shape computations to enable more exact shape
    inference. Therefore it does do some mutation of the graph. Constant folding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		fmt.Fprintf(fgcc, "\t%s _cgo_r;\n", t.C.String())
    	}
    	fmt.Fprintf(fgcc, "\t_cgo_tsan_acquire();\n")
    	fmt.Fprintf(fgcc, "\t")
    	if t := n.FuncType.Result; t != nil {
    		fmt.Fprintf(fgcc, "_cgo_r = ")
    		// Cast to void* to avoid warnings due to omitted qualifiers.
    		if c := t.C.String(); c[len(c)-1] == '*' {
    			fmt.Fprintf(fgcc, "(void*)")
    		}
    	}
    	if n.Kind == "macro" {
    		fmt.Fprintf(fgcc, "%s;\n", n.C)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/TypeToken.java

          @Override
          void visitGenericArrayType(GenericArrayType t) {
            builder.add(Types.getArrayClass(of(t.getGenericComponentType()).getRawType()));
          }
        }.visit(runtimeType);
        // Cast from ImmutableSet<Class<?>> to ImmutableSet<Class<? super T>>
        @SuppressWarnings({"unchecked", "rawtypes"})
        ImmutableSet<Class<? super T>> result = (ImmutableSet) builder.build();
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top