Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for opcode (0.13 sec)

  1. internal/grid/connection.go

    			dst = dst[:0]
    			for {
    				hdr, err := wsReader.NextFrame()
    				if err != nil {
    					return nil, err
    				}
    				if hdr.OpCode.IsControl() {
    					if err := controlHandler(hdr, &wsReader); err != nil {
    						return nil, err
    					}
    					continue
    				}
    				if hdr.OpCode&want == 0 {
    					if err := wsReader.Discard(); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      EXPECT_TRUE(compilation_result.ok());
    
      // Ensure that the compilation result contains a constant.
      EXPECT_THAT(compilation_result,
                  ComputationProtoContains("opcode:.*constant"));
    }
    
    TEST(LegalizeTFTest, SkipsTensorListSetItemIfDimensionsTooLarge) {
      static constexpr char kTensorListSetItemDimensionTooLarge[] = R"(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        auto operators = msubgraph->mutable_operators();
        for (auto op : *operators) {
          auto opcode_idx = op->opcode_index();
          auto opcodes = mutable_model->operator_codes();
          auto opcode = (*opcodes)[opcode_idx]->builtin_code();
          if (opcode == tflite::BuiltinOperator_CUSTOM) {
            std::vector<int32_t> inputs(op->inputs()->begin(), op->inputs()->end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	return fcb.encode()
    }
    
    // addFlags32 returns the flags that would be set from computing x+y.
    func addFlags32(x, y int32) flagConstant {
    	var fcb flagConstantBuilder
    	fcb.Z = x+y == 0
    	fcb.N = x+y < 0
    	fcb.C = uint32(x+y) < uint32(x)
    	fcb.V = x >= 0 && y >= 0 && x+y < 0 || x < 0 && y < 0 && x+y >= 0
    	return fcb.encode()
    }
    
    // subFlags32 returns the flags that would be set from computing x-y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// timestamps.
    		ByteStringToTime: cbor.ByteStringToTimeAllowed,
    	}.DecMode()
    	if err != nil {
    		panic(err)
    	}
    	return decode
    }()
    
    // DecodeLax is derived from Decode, but does not complain about unknown fields in the input.
    var DecodeLax cbor.DecMode = func() cbor.DecMode {
    	opts := Decode.DecOptions()
    	opts.ExtraReturnErrors &^= cbor.ExtraDecErrorUnknownField // clear bit
    	dm, err := opts.DecMode()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

        override suspend fun WriteContext.encode(value: NullValueSnapshot) {
        }
    
        override suspend fun ReadContext.decode(): NullValueSnapshot {
            return NullValueSnapshot.INSTANCE
        }
    }
    
    
    object IsolatedEnumValueSnapshotCodec : Codec<IsolatedEnumValueSnapshot> {
        override suspend fun WriteContext.encode(value: IsolatedEnumValueSnapshot) {
            write(value.value)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                else -> throw IllegalStateException("Unexpected provider value")
            }
    }
    
    
    class FlowProvidersCodec(
        private val flowProviders: FlowProviders
    ) : Codec<BuildWorkResultProvider> {
    
        override suspend fun WriteContext.encode(value: BuildWorkResultProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

    
    inline fun <T : Any> WriteContext.encodePreservingIdentityOf(reference: T, encode: WriteContext.(T) -> Unit) {
        encodePreservingIdentityOf(isolate.identities, reference, encode)
    }
    
    
    inline fun <T : Any> WriteContext.encodePreservingSharedIdentityOf(reference: T, encode: WriteContext.(T) -> Unit) =
        encodePreservingIdentityOf(sharedIdentities, reference, encode)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/image/gif/writer_test.go

    	if err != nil {
    		t.Fatalf("readImg: %v", err)
    	}
    	m0 = m0.(*image.Paletted).SubImage(image.Rect(0, 0, 50, 30))
    	var buf bytes.Buffer
    	err = Encode(&buf, m0, nil)
    	if err != nil {
    		t.Fatalf("Encode: %v", err)
    	}
    	m1, err := Decode(&buf)
    	if err != nil {
    		t.Fatalf("Decode: %v", err)
    	}
    	if m0.Bounds() != m1.Bounds() {
    		t.Fatalf("bounds differ: %v and %v", m0.Bounds(), m1.Bounds())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. cmd/storage-datatypes_gen_test.go

    	v := BaseOptions{}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    
    	m := v.Msgsize()
    	if buf.Len() > m {
    		t.Log("WARNING: TestEncodeDecodeBaseOptions Msgsize() is inaccurate")
    	}
    
    	vn := BaseOptions{}
    	err := msgp.Decode(&buf, &vn)
    	if err != nil {
    		t.Error(err)
    	}
    
    	buf.Reset()
    	msgp.Encode(&buf, &v)
    	err = msgp.NewReader(&buf).Skip()
    	if err != nil {
    		t.Error(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
Back to top