Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for continued (0.23 sec)

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

        const tensorflow::OpRegistrationData* op_reg_data =
            tensorflow::OpRegistry::Global()->LookUp(node_def.op());
        if (!op_reg_data) {
          // This is likely a function call node, so we should continue.
          continue;
        }
        ::tensorflow::AddDefaultsToNodeDef(op_reg_data->op_def, &node_def);
      }
      return absl::OkStatus();
    }
    
    // Mapping from node name to feed (index and ArrayInfo). Node name must outlive
    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/compile/internal/ssa/rewriteRISCV64.go

    	// result: (ADDI [val] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpRISCV64MOVDconst {
    				continue
    			}
    			t := v_0.Type
    			val := auxIntToInt64(v_0.AuxInt)
    			x := v_1
    			if !(is32Bit(val) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpRISCV64ADDI)
    			v.AuxInt = int64ToAuxInt(val)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        auto splat_attr = mlir::dyn_cast_or_null<SplatElementsAttr>(operand);
        if (!splat_attr) continue;
    
        if (splat_attr.getType() != result_type) continue;
    
        // We can only fold away constant Falses.
        auto splat_value = splat_attr.getSplatValue<BoolAttr>().getValue();
        if (splat_value) continue;
    
        return operand;
      }
    
      return {};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/webcomponents.min.js

    le host":"authority ignore slashes";break;case"authority first slash":if("/"!=y){c("Expected '/', got: "+y),l="authority ignore slashes";continue}l="authority second slash";break;case"authority second slash":if(l="authority ignore slashes","/"!=y){c("Expected '/', got: "+y);continue}break;case"authority ignore slashes":if("/"!=y&&"\\"!=y){l="authority";continue}c("Expected authority, got: "+y);break;case"authority":if("@"==y){v&&(c("@ already seen."),d+="%40"),v=!0;for(var S=0;S<d.length;S++){var...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      for (const auto& arg_attr : dict_attrs) {
        if (!arg_attr) continue;
    
        auto attrs = arg_attr.getValue();
        for (const auto attr : attrs) {
          if (attr.getName() == attr_name) {
            auto array_attr =
                mlir::dyn_cast_or_null<mlir::ArrayAttr>(attr.getValue());
            if (!array_attr || array_attr.empty()) continue;
            auto string_attr =
    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/cmd/compile/internal/ssa/rewriteLOONG64.go

    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpLOONG64MOVVconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt64(v_1.AuxInt)
    			if !(is32Bit(c) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpLOONG64ADDVconst)
    			v.AuxInt = int64ToAuxInt(c)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.cc

        const Tensor& src = outputs[i];
        if (!src.IsInitialized() || src.NumElements() == 0) {
          c_outputs[i] =
              EmptyTensor(static_cast<TF_DataType>(src.dtype()), src.shape());
          continue;
        }
        c_outputs[i] = TF_TensorFromTensor(src, &status->status);
        if (!status->status.ok()) return;
      }
    }
    
    extern "C" {
    
    void TF_Run(TF_DeprecatedSession* s, const TF_Buffer* run_options,
    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/compile/internal/ssa/rewriteMIPS64.go

    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpMIPS64MOVVconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt64(v_1.AuxInt)
    			if !(is32Bit(c) && !t.IsPtr()) {
    				continue
    			}
    			v.reset(OpMIPS64ADDVconst)
    			v.AuxInt = int64ToAuxInt(c)
    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    			for _, newPodInfo := range podInfo {
    				oldPodHasProcMount, oldPod := oldPodInfo.hasProcMount, oldPodInfo.pod()
    				newPodHasProcMount, newPod := newPodInfo.hasProcMount, newPodInfo.pod()
    				if newPod == nil {
    					continue
    				}
    
    				t.Run(fmt.Sprintf("feature enabled=%v, old pod %v, new pod %v", enabled, oldPodInfo.description, newPodInfo.description), func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    			continue
    		}
    		volumePlugin, err :=
    			og.volumePluginMgr.FindPluginBySpec(volumeAttached.VolumeSpec)
    		if err != nil || volumePlugin == nil {
    			klog.Errorf(volumeAttached.GenerateErrorDetailed("VolumesAreAttached.FindPluginBySpec failed", err).Error())
    			continue
    		}
    		volumeSpecList, pluginExists := volumesPerPlugin[volumePlugin.GetPluginName()]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top