Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for Instruction (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          TF_RETURN_IF_ERROR(set_attributes_on_func(ret.node, ret_and_idx.index(),
                                                    /*is_arg=*/false));
          // Lookup the instruction inside the island
          auto island_op = llvm::cast<mlir::tf_executor::IslandOp>(inst);
          mlir::Operation* inner_op = &island_op.GetBody().front();
          // Remove kRetOp or kDeviceRetOp operation and return its operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	GOMIPS64
    //		For GOARCH=mips64{,le}, whether to use floating point instructions.
    //		Valid values are hardfloat (default), softfloat.
    //	GOPPC64
    //		For GOARCH=ppc64{,le}, the target ISA (Instruction Set Architecture).
    //		Valid values are power8 (default), power9, power10.
    //	GORISCV64
    //		For GOARCH=riscv64, the RISC-V user-mode application profile for which
    //		to compile. Valid values are rva20u64 (default), rva22u64.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Simplifications that apply to all backend architectures. As an example, this
    // Go source code
    //
    // y := 0 * x
    //
    // can be translated into y := 0 without losing any information, which saves a
    // pointless multiplication instruction. Other .rules files in this directory
    // (for example AMD64.rules) contain rules specific to the architecture in the
    // filename. The rules here apply to every architecture.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	}
    
    	memclrNoHeapPointers(unsafe.Pointer(&newg.sched), unsafe.Sizeof(newg.sched))
    	newg.sched.sp = sp
    	newg.stktopsp = sp
    	newg.sched.pc = abi.FuncPCABI0(goexit) + sys.PCQuantum // +PCQuantum so that previous instruction is in same function
    	newg.sched.g = guintptr(unsafe.Pointer(newg))
    	gostartcallfn(&newg.sched, fn)
    	newg.parentGoid = callergp.goid
    	newg.gopc = callerpc
    	newg.ancestors = saveAncestors(callergp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

              "can "
              "enable TF kernels fallback using TF Select. See instructions: "
              "https://www.tensorflow.org/lite/guide/ops_select \n" +
              failed_flex_ops_summary + "\n";
        if (!failed_custom_ops_.empty())
          err +=
              "\nSome ops in the model are custom ops, "
              "See instructions to implement "
              "custom ops: https://www.tensorflow.org/lite/guide/ops_custom \n" +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	if x != TypeOf(y) || TypeOf(Zero(x).Interface()) != TypeOf(y) {
    		t.Errorf("did not find preexisting type for %s (vs %s)", TypeOf(x), TypeOf(y))
    	}
    }
    
    func TestArrayOf(t *testing.T) {
    	// check construction and use of type not in binary
    	tests := []struct {
    		n          int
    		value      func(i int) any
    		comparable bool
    		want       string
    	}{
    		{
    			n:          0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.cc

                "issue at https://github.com/tensorflow/tensorflow/issues.");
            return;
          }
          // We have a convoluted scheme here: Using the C++ graph construction API
          // to add potentially many nodes to the graph without running the checks
          // (such as uniqueness of the names of nodes) we run with other functions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"congo_brazzaville":                    "\U0001f1e8\U0001f1ec",
    	"congo_kinshasa":                       "\U0001f1e8\U0001f1e9",
    	"congratulations":                      "\u3297\ufe0f",
    	"construction":                         "\U0001f6a7",
    	"construction_worker":                  "\U0001f477",
    	"construction_worker_man":              "\U0001f477\u200d\u2642\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TF::CreateUnrollBatchMatMulPassPass()";
    }
    
    def ClusterFormationPass : Pass<"tf-device-cluster-formation", "mlir::ModuleOp"> {
      let summary = "Form clusters from instructions assigned to same device";
      let constructor = "TFDevice::CreateClusterFormationPass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

         *     {@code key} parameter. That way, we prevent the key from being garbage collected in the
         *     case of weak keys. If we create a new entry with a key that is null at construction time,
         *     we're not sure if entry will necessarily ever be garbage collected.
         * @param newNext entry in the same bucket
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top