Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,111 for Invert (0.1 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      bool is_new_function = visited_functions.insert(function).second;
      if (!is_new_function) return absl::OkStatus();
    
      auto function_name = FindFunctionName(configs, function);
    
      // TODO(fengliuai): use a small flib_def to reduce overhead
      absl::flat_hash_set<Node*> control_ret_nodes;
      TF_ASSIGN_OR_RETURN(
          auto sub_graph,
          Exporter::Convert(configs, tf_dialect, symbol_table, function, flib_def,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/a.out.go

    	ALDGR
    	ALGDR
    
    	// convert from int32/int64 to float/float64
    	ACEFBRA
    	ACDFBRA
    	ACEGBRA
    	ACDGBRA
    
    	// convert from float/float64 to int32/int64
    	ACFEBRA
    	ACFDBRA
    	ACGEBRA
    	ACGDBRA
    
    	// convert from uint32/uint64 to float/float64
    	ACELFBR
    	ACDLFBR
    	ACELGBR
    	ACDLGBR
    
    	// convert from float/float64 to uint32/uint64
    	ACLFEBR
    	ACLFDBR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        VLOG(2) << "MLIR module is not updated. Using the original graph. "
                << "Do not convert mlir module back to graph";
        return absl::OkStatus();
      }
      GraphExportConfig export_config;
      absl::flat_hash_set<Node*> control_ret_nodes;
    
      timings.Reset({kTfMlirCategory, "convert_mlir_to_graph"});
      // Some or all passes are enabled. Convert MLIR module and return back
      // resulted graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    
    // Convert updates into canonical form as expected by tf.scatter ops.
    //
    // tf.scatter expects `update_window_dims` to be the trailing dimensions.
    //
    // To support scatter ops generated by numpy-like slice updates:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/database/sql/fakedb_test.go

    	colName      []string // used by CREATE, INSERT, SELECT (selected columns)
    	colType      []string // used by CREATE
    	colValue     []any    // used by INSERT (mix of strings and "?" for bound params)
    	placeholders int      // used by INSERT/SELECT: number of ? params
    
    	whereCol []boundCol // used by SELECT (all placeholders)
    
    	placeholderConverter []driver.ValueConverter // used by INSERT
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    			return nil
    		}
    
    		// attempt to convert the object to an external version first.
    		target, ok := context.(GroupVersioner)
    		if !ok {
    			return fmt.Errorf("unable to convert the internal object type %T to Unstructured without providing a preferred version to convert to", in)
    		}
    		// Convert is implicitly unsafe, so we don't need to perform a safe conversion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      llvm::SmallSet<int, 8> read_array;
      for (const Attribute& attr : op.getDeviceVarReadsIndices()) {
        read_array.insert(mlir::cast<IntegerAttr>(attr).getInt());
      }
      llvm::SmallSet<int, 8> update_array;
      for (const Attribute& attr : op.getDeviceVarUpdatesIndices()) {
        update_array.insert(mlir::cast<IntegerAttr>(attr).getInt());
      }
    
      for (auto& arg : op->getOpOperands()) {
        Value v = arg.get();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. pkg/kubelet/pod/pod_manager.go

    	for _, pod := range pods {
    		podFullName := kubecontainer.GetPodFullName(pod)
    		// This logic relies on a static pod and its mirror to have the same name.
    		// It is safe to type convert here due to the IsMirrorPod guard.
    		if kubetypes.IsMirrorPod(pod) {
    			mirrorPodUID := kubetypes.MirrorPodUID(pod.UID)
    			pm.mirrorPodByUID[mirrorPodUID] = pod
    			pm.mirrorPodByFullName[podFullName] = pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

                byte[] manifestBytes;
                if (DEFAULT_CONTENT_CHARSET.equals(contentCharset)) {
                    manifestBytes = buffer.toByteArray();
                } else {
                    // Convert the UTF-8 manifest bytes to the requested content charset
                    manifestBytes = buffer.toString(DEFAULT_CONTENT_CHARSET).getBytes(contentCharset);
                }
                outputStream.write(manifestBytes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/flags.cc

                &build_ops_flags->tf_xla_print_cluster_outputs,
                "If true then insert Print nodes to print out values produced by "
                "XLA clusters."),
           Flag("tf_xla_check_cluster_input_numerics",
                &build_ops_flags->tf_xla_check_cluster_input_numerics,
                "If true then insert CheckNumerics nodes to check all cluster "
                "inputs."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top